1

我正在尝试在我的 Mac 上对 C++ 程序进行“干净”构建。我的意思是干净,不要包括我没有明确指定的任何内容。

我的 gcc 安装位于:

/Applications/gcc471/

到目前为止,我可以编译使用

-nostdinc++

通过包括

GPP-INCLUDES += -I/Applications/gcc471/include/c++/4.7.1/
GPP-INCLUDES += -I/Applications/gcc471/include/c++/4.7.1/x86_64-apple-darwin12.0.0

和做

g++ -c *.cpp $(GPP-INCLUDES) -nostdinc++

我对此很满意。但是,我正在尝试使用

-nostdinc

看来,无论我包含多少条路径

/usr/local/include
/usr/include
....

我收到一大堆这样的错误:

/Applications/gcc471/include/c++/4.7.1/tr1/cmath: At global scope:
/Applications/gcc471/include/c++/4.7.1/tr1/cmath:156:11: error: ‘::double_t’ has not been declared
/Applications/gcc471/include/c++/4.7.1/tr1/cmath:157:11: error: ‘::float_t’ has not been declared
/Applications/gcc471/include/c++/4.7.1/tr1/cmath:160:11: error: ‘::acosh’ has not been declared
...

有谁知道如何在mac上使用-nostdinc从头开始完全构建一个cpp程序?

4

1 回答 1

2

我能够使用 -nostdinc 进行编译,但不能像我希望的那样没有 -I/usr/include/。我不相信 Xcodes llvm/clang/gcc4.2(真的很老)/不是真正的 GCC 废话。所以我从头开始下载 GCC 并使用此处的指南从源代码构建它:http: //staticimport.blogspot.ca/2012/02/building-gcc-462-on-os-x-lion.html

问题是 libstdc 似乎不再随 gcc 一起提供,只有 libstdc++。所以所有 .hpp 文件都在我的 GCC 目录中,但真正旧的头文件,例如 locale.h(从 1993 年开始),似乎只出现在 libstdc XCode 安装到 /usr/include 中。我将继续寻找一个普通的 libstdc 来安装,但就目前而言,这些是我可以编译的最小和最“GNU”目录:

...
#FOR -nostdinc++ 
GPP-INCLUDES += -I/Applications/gcc471/include/c++/4.7.1/
GPP-INCLUDES += -I/Applications/gcc471/include/c++/4.7.1/x86_64-apple-darwin12.0.0
#for -nostdinc
GPP-INCLUDES += -I/Applications/gcc471/lib/gcc/x86_64-apple-darwin12.0.0/4.7.1/include/
GPP-INCLUDES += -I/usr/local/include
GPP-INCLUDES += -I/usr/include/ #bahhhhh cant get away

g++ -c *.cpp $(GPP-INCLUDES) -nostdinc++ -nostdinc  -std=c++11
于 2013-10-23T18:34:10.960 回答