Changeset a45086 in git for dyn_modules/syzextra


Ignore:
Timestamp:
Apr 25, 2011, 8:25:05 AM (13 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', '2a584933abf2a2d3082034c7586d38bb6de1a30a')
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
File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.