summaryrefslogtreecommitdiff
path: root/acprep
diff options
context:
space:
mode:
Diffstat (limited to 'acprep')
-rwxr-xr-xacprep10
1 files changed, 8 insertions, 2 deletions
diff --git a/acprep b/acprep
index 1eccef64..fa61ba98 100755
--- a/acprep
+++ b/acprep
@@ -1016,8 +1016,14 @@ class PrepareBuild(CommandLineApp):
self.envvars['PYTHON_HOME'] = '/opt/local'
if self.options.use_clang:
- self.boost_inc_ident = "clang"
- self.boost_lib_ident = "clang-darwin28"
+ self.log.info('Setting up for using Clang')
+
+ self.boost_inc_ident = "clang31"
+ self.boost_lib_ident = "clang-darwin42"
+
+ #self.CXXFLAGS.append('-std=c++11')
+ #self.CXXFLAGS.append('-stdlib=libc++')
+ #self.LDFLAGS.append('-stdlib=libc++')
global search_prefixes
search_prefixes = [ '/opt/local', '/usr/local', '/sw', '/usr' ]