Browse Source

Merge pull request #2157 from martin-frbg/2154-2

Add gfortran workaround for potential ABI violation
tags/v0.3.7
Martin Kroeker GitHub 7 years ago
parent
commit
be8f70d269
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      cmake/fc.cmake

+ 3
- 0
cmake/fc.cmake View File

@@ -44,7 +44,10 @@ endif ()

if (${F_COMPILER} STREQUAL "GFORTRAN")
set(CCOMMON_OPT "${CCOMMON_OPT} -DF_INTERFACE_GFORT")
# ensure reentrancy of lapack codes
set(FCOMMON_OPT "${FCOMMON_OPT} -Wall -frecursive")
# work around ABI violation in passing string arguments from C
set(FCOMMON_OPT "${FCOMMON_OPT} -fno-optimize-sibling-calls")
#Don't include -lgfortran, when NO_LAPACK=1 or lsbcc
if (NOT NO_LAPACK)
set(EXTRALIB "{EXTRALIB} -lgfortran")


Loading…
Cancel
Save