]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/tools/build/test/toolset-mock/project-config.jam
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / tools / build / test / toolset-mock / project-config.jam
index 4f30993d046231184614c847f4c55f136dd8df22..30a9e9415b2cbae97c73a6449eacd4c55fec5832 100644 (file)
@@ -5,36 +5,39 @@
 #          http://www.boost.org/LICENSE_1_0.txt)
 
 import modules ;
+import os ;
 
 path-constant here : . ;
 
-using gcc : 4.8.3 : python $(here)/src/gcc-4.8.3-linux.py : : <target-os>linux ;
-using gcc : 4.2.1 : python $(here)/src/gcc-4.2.1-darwin.py : : <target-os>darwin ;
+local PYTHON = [ os.environ PYTHON_CMD ] ;
+
+using gcc : 4.8.3 : $(PYTHON) $(here)/src/gcc-4.8.3-linux.py : : <target-os>linux ;
+using gcc : 4.2.1 : $(PYTHON) $(here)/src/gcc-4.2.1-darwin.py : : <target-os>darwin ;
 
 # hard-code this to make the test work on other platforms
 modules.poke darwin : .host-osx-version : 10.11.0 ;
-using darwin : 4.2.1 : python $(here)/src/darwin-4.2.1.py
+using darwin : 4.2.1 : $(PYTHON) $(here)/src/darwin-4.2.1.py
   : <archiver>$(here)/src/bin/libtool
     <striper>$(here)/src/bin/strip
   : <target-os>darwin
   ;
 
-using clang-darwin : 3.9.0 : python $(here)/src/clang-3.9.0-darwin.py
+using clang-darwin : 3.9.0 : $(PYTHON) $(here)/src/clang-3.9.0-darwin.py
   : <archiver>$(here)/src/bin/ar
     <ranlib>$(here)/src/bin/ranlib
   ;
 
-using clang-linux : 3.9.0 : python $(here)/src/clang-linux-3.9.0.py
+using clang-linux : 3.9.0 : $(PYTHON) $(here)/src/clang-linux-3.9.0.py
   : <archiver>$(here)/src/bin/ar
     <ranlib>$(here)/src/bin/ranlib
   ;
 
-using clang-vxworks : 4.0.1 : python $(here)/src/clang-vxworks-4.0.1.py
+using clang-vxworks : 4.0.1 : $(PYTHON) $(here)/src/clang-vxworks-4.0.1.py
   : <linker>$(here)/src/bin/ld
     <archiver>$(here)/src/bin/ar
   ;
 
-using intel-darwin : 10.2 : python $(here)/src/intel-darwin-10.2.py
+using intel-darwin : 10.2 : $(PYTHON) $(here)/src/intel-darwin-10.2.py
   : <archiver>$(here)/src/bin/ar
     <ranlib>$(here)/src/bin/ranlib
   ;