Created
February 4, 2011 17:21
-
-
Save rpavlik/811405 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/SConstruct b/SConstruct | |
index 8326a89..2eb7ff0 100644 | |
--- a/SConstruct | |
+++ b/SConstruct | |
@@ -126,7 +126,9 @@ def BuildDarwinEnvironment(): | |
exp = re.compile('^(.*)\/Python\.framework.*$') | |
m = exp.search(distutils.sysconfig.get_config_var('prefix')) | |
- framework_opt = '-F' + m.group(1) | |
+ framework_opt = None | |
+ if m: | |
+ framework_opt = '-F' + m.group(1) | |
CXX = os.environ.get("CXX", WhereIs('g++')) | |
@@ -138,7 +140,10 @@ def BuildDarwinEnvironment(): | |
LINK = CXX | |
CXXFLAGS = ['-ftemplate-depth-256', '-DBOOST_PYTHON_DYNAMIC_LIB', | |
- '-Wall', framework_opt, '-pipe'] | |
+ '-Wall', '-pipe'] | |
+ | |
+ if framework_opt is not None: | |
+ CXXFLAGS.append(framework_opt) | |
compiler_ver = match_obj.group(1) | |
compiler_major_ver = int(match_obj.group(2)) | |
@@ -152,7 +157,10 @@ def BuildDarwinEnvironment(): | |
CXXFLAGS += ['-Wno-long-double', '-no-cpp-precomp'] | |
SHLIBSUFFIX = distutils.sysconfig.get_config_var('SO') | |
- SHLINKFLAGS = ['-bundle', framework_opt, '-framework', 'Python'] | |
+ SHLINKFLAGS = ['-bundle'] | |
+ | |
+ if framework_opt is not None: | |
+ SHLINKFLAGS.extend([framework_opt, '-framework', 'Python']) | |
LINKFLAGS = [] | |
# Enable profiling? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment