I need to describe an external library in a Jamfile. The location of the library is held in an environment variable.

set EX_LIB_PATH=C:\Program Files\Ext

Here is the snippet from the Jamfile:

--snip--

lib extlin : : <file>$(EXT_LIB_PATH)/lib/library.lib ;

--spin--

bjam croaks saying that "C:\Program" cannot be found. What can be done to get the lib rule call in the Jamfile to accept a path with an embedded space?

link|improve this question
feedback

2 Answers

A bit late, but for reference, try this:

lib extlin : : <file>"$(EXT_LIB_PATH:J=\ )/lib/library.lib" ;

Worked for me on Boost.Jam Version 3.1.10. OS=NT.

link|improve this answer
feedback

Did you try putting it in quotes?

lib extlin : : <file>"$(EXT_LIB_PATH)/lib/library.lib" ;

It's a question of when, exactly, bjam expands the variable name, and if something else further down the line has a problem with a filename with spaces. But I believe this should work.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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