|
From: <pat...@us...> - 2007-06-28 22:04:49
|
Revision: 611
http://svn.sourceforge.net/xml-cppdom/?rev=611&view=rev
Author: patrickh
Date: 2007-06-28 15:04:45 -0700 (Thu, 28 Jun 2007)
Log Message:
-----------
Recognize more CPU architecures when naming the .fpc file.
Modified Paths:
--------------
trunk/SConstruct
Modified: trunk/SConstruct
===================================================================
--- trunk/SConstruct 2007-06-28 20:16:14 UTC (rev 610)
+++ trunk/SConstruct 2007-06-28 22:04:45 UTC (rev 611)
@@ -167,7 +167,7 @@
sub_dirs = ['cppdom']
if common_env['build_test'] == 'yes':
sub_dirs.append('test')
-
+
# ---- FOR EACH VARIANT ----- #
for combo in variant_helper.iterate(locals(), base_bldr, common_env):
#baseEnv = env_bldr.applyToEnvironment(common_env.Copy(), variant=combo,options=opts)
@@ -212,6 +212,12 @@
arch = "i386"
elif "x64" == combo["arch"]:
arch = "x86_64"
+ elif "ppc" == combo["arch"]:
+ arch = "ppc"
+ elif "ppc" == combo["arch"]:
+ arch = "ppc64"
+ elif "universal" == combo["arch"]:
+ arch = "universal"
cppdom_cxxflags = ''
cppdom_libs = "-l%s" % cppdom_shared_libname
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|