Changeset a45086 in git for dyn_modules


Ignore:
Timestamp:
Apr 25, 2011, 8:25:05 AM (13 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
4be94358d35989a4285e3c28d99bc11c43898790
Parents:
27fc50798f4a600cdf27a60e02e59f8dae24e3c0
Message:
FIX: mac os x specific linker options

From: Oleksandr Motsak <motsak@mathematik.uni-kl.de>

git-svn-id: file:///usr/local/Singular/svn/trunk@14180 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
dyn_modules
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • dyn_modules/bigintm/SConstruct

    r27fc50 ra45086  
    2020CXXTEMPLFLAGS = "-fno-implicit-templates --no-exceptions"
    2121
    22 BUNDLETEMPFLAGS = '$LDMODULEFLAGS -twolevel_namespace -weak_reference_mismatches weak -undefined dynamic_lookup'
     22if env ['PLATFORM'] == "darwin":
     23    MACOSXMODULEFLAGS = '-twolevel_namespace -weak_reference_mismatches weak -undefined dynamic_lookup'
     24else:
     25    MACOSXMODULEFLAGS = ''
     26## '-flat_namespace -undefined suppress'
     27
     28BUNDLETEMPFLAGS = '$LDMODULEFLAGS ' + MACOSXMODULEFLAGS
    2329
    2430### for the use with "scons debug=1"
  • dyn_modules/syzextra/SConstruct

    r27fc50 ra45086  
    2020CXXTEMPLFLAGS = "-fno-implicit-templates --no-exceptions"
    2121
    22 ## BUNDLETEMPFLAGS = '$LDMODULEFLAGS -flat_namespace -undefined suppress'
    23 BUNDLETEMPFLAGS = '$LDMODULEFLAGS -twolevel_namespace -weak_reference_mismatches weak -undefined dynamic_lookup'
     22if env ['PLATFORM'] == "darwin":
     23    MACOSXMODULEFLAGS = '-twolevel_namespace -weak_reference_mismatches weak -undefined dynamic_lookup'
     24else:
     25    MACOSXMODULEFLAGS = ''
     26## '-flat_namespace -undefined suppress'
     27
     28BUNDLETEMPFLAGS = '$LDMODULEFLAGS ' + MACOSXMODULEFLAGS
    2429
    2530### for the use with "scons debug=1"
Note: See TracChangeset for help on using the changeset viewer.