当我尝试构建这个项目时,我遇到了以下问题:
drazisil@Lightning:~/comical$ make -C src
make: Entering directory '/home/drazisil/comical/src'
Converting firstpage.png
...
make[1]: Entering directory `/home/travis/build/drazisil/comical/src'
`wx-config --cxx` `wx-config --cxxflags` -O2 -Wall -pipe -D_UNIX -I../unrar -I../unzip -c -o ComicalApp.o ComicalApp.cpp
In file included from ComicalFrame.h:43:0,
from ComicalManager.h:32,
from ComicalApp.h:32,
from ComicalApp.cpp:28:
firstpage.h:2:1: error: stray ‘#’ in program
原因似乎是因为在生成的.h文件的开头和结尾都插入了-e
#ifndef _firstpage_png_h
-e #define _firstpage_png_h
static const unsigned char firstpage_png[] = {
...
...
...
-e };
#endif
由于我不确定该过程的哪一步导致这种情况,我不确定如何删除它,或者它甚至意味着什么。搜索-e并不是那么好用。
提前感谢您的帮助。
ETA:Makefile:https://github.com/drazisil/comical/blob/dev/Makefile
答案 0 :(得分:2)
问题是src/Makefile
文件中的this target。
%.h : %.png
@echo "Converting" $<
@echo "#ifndef _"$*"_png_h" > $@
@echo -e "#define _"$*"_png_h\n" >> $@
@echo "static const unsigned char "$*"_png[] = {" >> $@
@hexdump -e "13/1 \"0x%02X, \" \"\n\"" $< | sed 's/0x ,//g' >> $@
@echo -e "};\n\n#endif" >> $@
具体来说,这两行使用echo -e
试图在回显输出的末尾添加一个额外的换行符。
echo -e
是非标准的,echo
的shell /版本显然无法理解。
那些重写为以下行的目标会更好:
@printf '#define _$*_png_h\n\n' >> $@
@printf '};\n\n#endif\n' >> $@
该目标的其他改进也是可能的,但是这个问题超出了范围(主要是使用单个shell命令和单个重定向而不是5个)。