reduced optimization level to 01 as O2 gives the following runtime error:

/abaqus/6.12-2/code/bin/standard.exe: symbol lookup error: /tmp/f.roters_input_hbc_29668/libstandardU.so: undefined symbol: for_simd_random_number
This commit is contained in:
Franz Roters 2012-12-21 15:09:34 +00:00
parent a69aaa1315
commit 41c5e43377
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ fortCmd = "ifort"
# -integer-size 32 -DINT=4 assume size of integer to be 4 bytes, matches our definition of pInt
compile_fortran = (fortCmd + " -c -fPIC -auto " +
"-I%I -free -O2 -fpp -openmp " +
"-I%I -free -O1 -fpp -openmp " +
"-ftz " +
"-implicitnone -assume byterecl " +
"-real-size 64 -integer-size 32 -DFLOAT=8 -DINT=4")