Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've got a Makefile that includes another makefile that sets a lot of defaults. I can't edit the included makefile and I'd like to change the value of C++FLAGS in my makefile even though it is set in the included makefile. Specifically, I'd like to remove the optimization flag from C++FLAGS whenever debug=1.

I tried the following:

C++FLAGS=$(filter-out -O3,$(C++FLAGS))

Which fails with the following error:

Recursive variable `C++FLAGS' references itself (eventually).  Stop.

It seems like doing something like this should be possible, anybody know the secret?

share|improve this question

1 Answer

up vote 5 down vote accepted
C++FLAGS:=$(filter-out -O3,$(C++FLAGS))

The := assignment immediately evaluates the rvalue and this should therefore work. = on the other hand has delayed expansion semantics (i.e. the C++FLAGS will expand whenever the lvalue gets used, which leads to recursion).

share|improve this answer
Argh! I knew it had to be something simple like that. Thanks. – Paul Wicks Mar 8 '12 at 2:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.