diff options
author | Andrei Karas <akaras@inbox.ru> | 2019-12-20 02:26:35 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2019-12-20 02:26:35 +0300 |
commit | 6941fd4eeb1dce20aba8c42fd030c2690c37b731 (patch) | |
tree | f12f6f2c591998aa725e88352a82a54193fe0a03 /tools/ci/jobs/gccsnapshot_sanitize_tests.sh | |
parent | e22b2566130eadc148c7aa89ee3cb429b22f1dfb (diff) | |
download | manaplus-6941fd4eeb1dce20aba8c42fd030c2690c37b731.tar.gz manaplus-6941fd4eeb1dce20aba8c42fd030c2690c37b731.tar.bz2 manaplus-6941fd4eeb1dce20aba8c42fd030c2690c37b731.tar.xz manaplus-6941fd4eeb1dce20aba8c42fd030c2690c37b731.zip |
Add linking with "-lm -ldl" in sanitize builds due SDL linking issue
Diffstat (limited to 'tools/ci/jobs/gccsnapshot_sanitize_tests.sh')
-rwxr-xr-x | tools/ci/jobs/gccsnapshot_sanitize_tests.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/ci/jobs/gccsnapshot_sanitize_tests.sh b/tools/ci/jobs/gccsnapshot_sanitize_tests.sh index 25e94b9a2..ffeb999b3 100755 --- a/tools/ci/jobs/gccsnapshot_sanitize_tests.sh +++ b/tools/ci/jobs/gccsnapshot_sanitize_tests.sh @@ -38,6 +38,8 @@ export CXXFLAGS="$CXXFLAGS -pedantic -ggdb3 -O2 -Wstrict-aliasing=2 \ -Wno-attributes \ -Wno-deprecated-copy" +export LDFLAGS="$LDFLAGS -lm -ldl" + #source ./tools/ci/flags/${FLAGS} export CXXFLAGS="$CXXFLAGS $POST_CXXFLAGS" |