当前位置: 技术问答>linux和unix
有谁知道怎么设置autoconf和automake把g++里的 -c 这个参数去掉
来源: 互联网 发布时间:2016-04-17
本文导语: 有谁知道怎么设置autoconf和automake把g++里的 -c 这个参数去掉 就是编译是如 g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/u01/oracle/product/9.2.0/rdbms/demo/ -I/u01/oracle/product/9.2.0/rdbms/public/ -L/u01/oracle/product/9.2.0/lib/ -lclntsh -g -O2 -c -o e...
有谁知道怎么设置autoconf和automake把g++里的 -c 这个参数去掉
就是编译是如
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/u01/oracle/product/9.2.0/rdbms/demo/ -I/u01/oracle/product/9.2.0/rdbms/public/ -L/u01/oracle/product/9.2.0/lib/ -lclntsh
-g -O2 -c -o ex659_oci9.o `test -f 'ex659_oci9.cpp' || echo './'`ex659_oci9.cpp
我想不要-c 在autoconf里或automake里要改哪个宏
就是编译是如
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/u01/oracle/product/9.2.0/rdbms/demo/ -I/u01/oracle/product/9.2.0/rdbms/public/ -L/u01/oracle/product/9.2.0/lib/ -lclntsh
-g -O2 -c -o ex659_oci9.o `test -f 'ex659_oci9.cpp' || echo './'`ex659_oci9.cpp
我想不要-c 在autoconf里或automake里要改哪个宏
|
这个可以在configure时指定CPPFLAGS,即./configure CPPFLAGS=-g -O2