diff options
author | randomdan <randomdan@localhost> | 2013-08-19 00:04:31 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2013-08-19 00:04:31 +0000 |
commit | 406ad8a3353b3acbf4cd451b75c32748861a5bda (patch) | |
tree | 241981563252d5afb77342ba2c92591deb128c14 | |
parent | Migrate all stuff to stricter compilations/links and C++0x builds (diff) | |
download | slicer-406ad8a3353b3acbf4cd451b75c32748861a5bda.tar.bz2 slicer-406ad8a3353b3acbf4cd451b75c32748861a5bda.tar.xz slicer-406ad8a3353b3acbf4cd451b75c32748861a5bda.zip |
Use CXX from the environment
-rw-r--r-- | Jamroot.jam | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Jamroot.jam b/Jamroot.jam index 1c2bea6..1f58848 100644 --- a/Jamroot.jam +++ b/Jamroot.jam @@ -1,4 +1,6 @@ -using gcc ; +import os ; + +using gcc : : [ os.environ CXX ] ; import type : register ; import generators : register-standard ; |