G ++不清楚编译失败

bfv*_*yen 1 c++ gcc makefile compilation g++

今天是个好日子.这是我关于stackoverflow的第一个问题.我用谷歌搜索并将这件事砸死,但没有一击.我试图在Mint 17上用g ++编译一个c ++库.我得到一个令人沮丧的不明确的失败消息.我想知道以前是否有人遇到过此事.我意识到它看起来像一个缺失的包含,奇怪的是指出的位置是失败点和缺乏信息.通常,编译器指定它找不到的文件.请参阅以下信息.任何建议将不胜感激.

"/usr/bin/make" -f nbproject/Makefile-Debug.mk QMAKE= SUBPROJECTS= .build-conf
make[1]: Entering directory `/home/bfvanrooyen/Projects/Management Console/Event Monitor'
cd ../Perlingo\ Library && /usr/bin/make  -f Makefile CONF=Debug
make[2]: Entering directory `/home/bfvanrooyen/Projects/Management Console/Perlingo Library'
"/usr/bin/make" -f nbproject/Makefile-Debug.mk QMAKE= SUBPROJECTS= .build-conf
make[3]: Entering directory `/home/bfvanrooyen/Projects/Management Console/Perlingo Library'
"/usr/bin/make"  -f nbproject/Makefile-Debug.mk dist/Debug/GNU-Linux-x86/libbham_dev.so
make[4]: Entering directory `/home/bfvanrooyen/Projects/Management Console/Perlingo Library'
mkdir -p build/Debug/GNU-Linux-x86/src
rm -f "build/Debug/GNU-Linux-x86/src/BhamEvent.o.d"
g++ -m32   -c -g -Wall -Iinclude -Isrc -I../Perlingo\ Shared\ Objects -include include -fPIC  -MMD -MP -MF "build/Debug/GNU-Linux-x86/src/BhamEvent.o.d" -o build/Debug/GNU-Linux-x86/src/BhamEvent.o src/BhamEvent.cpp
In file included from <command-line>:0:0:
/usr/include/stdc-predef.h:59:1: fatal error: include: No such file or directory
 #endif
 ^
compilation terminated.
Run Code Online (Sandbox Code Playgroud)

dir*_*ter 5

您的选项-include include告诉g++您包含一个名为"include" 的文件.无法找到所述文件g++,因此错误.您确定-include include不仅仅是某种复制和粘贴错误吗?

如果对所有这些标志和参数都有疑问,您可以在此处gcc文档中找到一个完整的列表.