How to specify include directory for configure script

耗尽温柔 提交于 2020-04-07 14:52:22

问题


I have a linux system at my workplace with pretty old packages and no root access. I'm compiling packages that I need from source with --prefix=[somewhere in homedir]. My problem is that I just can't find out how to convince configure to look for header files in a specific directory. The source is cpp. I tried with environment variables related to g++ and looking up flags and googling but I had no success. Can someone help me solve this?


回答1:


The normal way to do this is --with-<feature>=<header directory>.




回答2:


Usually you can pass additional compiler flags inside CXXFLAGS. For gcc you can specify more include directories with -I/some/dir, e.g.

$ ./configure CXXFLAGS="-I/some/dir/"

where /some/dir/ contains your headers.




回答3:


CPPFLAGS = C Preprocessor Flags, these flags will be used for C and C++ compilation.

CFLAGS = C Flags, these flags will be used when compiling C.

CXXFLAGS = C++ Flags, these flags will be used when compiling C++.

The -I flag specifies an additional include directory to be used during compilation.

Generally it's a good idea to use CPPFLAGS when specifying include directories, that way you know it will be used even if the project has some source that is compiled as C.

Of course, there might also be circumstances where you only want the include directory to be used by C or C++, but not both. In which case you would obviously be better served by using CFLAGS or CXXFLAGS instead.




回答4:


It's better to use CPPFLAGS to specify include directories.

./configure CPPFLAGS="-I/your/whatever/includedir"


来源:https://stackoverflow.com/questions/3958904/how-to-specify-include-directory-for-configure-script

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!