Ignore:
Timestamp:
03/11/20 20:39:49 (5 years ago)
Author:
jdquinn
Message:

CHG: Support for shared libraries in Boost and Dakota.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/wrappers/python/Makefile.am

    r24593 r24654  
    6464endif
    6565
     66# NOTE:
     67# - On Linux, We probably do not need the -static flag as long as we only
     68#       generate static libraries for external packages. Dynamic system libraries
     69#       will be linked to, whether we like it or not, if no static version is
     70#       available.
     71# - On macOC, static linking of binaries is not supported.
     72#
    6673if STANDALONE_MODULES
     74if MAC
     75AM_LDFLAGS += -Wl,-rpath,'$$ORIGIN'
     76else
    6777AM_LDFLAGS += -Wl,-static -Wl,--disable-new-dtags -Wl,-rpath,'$$ORIGIN'
     78endif
    6879endif
    6980
Note: See TracChangeset for help on using the changeset viewer.