Index: intel-linux.jam =================================================================== --- intel-linux.jam (revision 49070) +++ intel-linux.jam (working copy) @@ -79,11 +79,21 @@ flags intel-linux.compile OPTIONS on : -w1 ; flags intel-linux.compile OPTIONS all : -w2 ; +rule compile.c++ ( targets * : sources * : properties * ) +{ + setup-fpic $(targets) : $(sources) : $(properties) ; +} + actions compile.c++ { "$(CONFIG_COMMAND)" -c -xc++ $(OPTIONS) -D$(DEFINES) -I"$(INCLUDES)" -c -o "$(<)" "$(>)" } +rule compile.c++ ( targets * : sources * : properties * ) +{ + setup-fpic $(targets) : $(sources) : $(properties) ; +} + actions compile.c { "$(CONFIG_COMMAND)" -c -xc $(OPTIONS) -D$(DEFINES) -I"$(INCLUDES)" -c -o "$(<)" "$(>)"