开发者

Passing C/C++ #defines to makefile

开发者 https://www.devze.com 2022-12-16 12:39 出处:网络
I develop C/C++ using the Eclipse IDE. Eclipse also generates a makefile which I don\'t want to edit as it w开发者_JS百科ill simply be overwritten.

I develop C/C++ using the Eclipse IDE. Eclipse also generates a makefile which I don't want to edit as it w开发者_JS百科ill simply be overwritten.

I want to use that makefile for nightly build within Hudson.

How do I pass #defines which are made in the project file of the IDE to the makefile ? (and why doesn't Eclipse already include them in the generated makefile?)

I actually had this figured out once, then accidentally overwrote it :-( But at least I know that it can be done...


If you are running make from the command line, use

make CPPFLAGS=-DFOO

which will add -DFOO to all compilations. See also CFLAGS, CXXFLAGS, LDFLAGS in the make manual.


You could write a small program to include the headers and write a makefile fragment which you include in the main makefile (requires GNU make).

This is a fairly ugly solution that requires a fair amount of hand hackery. More elegant would be to parse the project file and write the makefile fragment.


For GCC use -D define.

OP commented below that he wants to pass the define into make and have it pass it on to GCC.

Make does not allow this. Typically you just add another make rule to add defines. For instance 'make release' vs 'make debug'. As the makefile creator you make the two rules and have the defines right in the make file. Now if Eclipse is not putting the defines into the makefile for you, I would say Eclipse is broken.


If you're using autotools another options is to have 2 directories 'bin/debug' and 'bin/release'.

# Simple bootstrap script.

# Remove previously generated filed and call autoreconf.
# At the end configure 2 separate builds.
echo "Setting up Debug configuration: bin/debug"
../../configure CXXFLAGS="-g3 -O0 -DDEBUG=1"
echo "Setting up Release configuration: bin/release"
cd bin/release/
../../configure CXXFLAGS="-O2"

Setup Eclipse. Open the project's properties (Project->Properties->C/C++ Build->Builder Settings) and set the Build Location->Build Directory to

${workspace_loc:/helloworld/bin/debug}

Replacing 'helloworld' with your project's directory relative to the workspace (or you can supply an absolute path ${/abs/path/debug}). Do the same thing with the Release config, replacing "/debug" with "release" at the end of the path.

This method seems like a waste of disk space, but a valid alternative to achieve completely separate builds.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号