mirror of
https://github.com/lemire/fast_double_parser.git
synced 2025-04-03 20:04:57 +00:00
Merge pull request #76 from barracuda156/apple
CMakeLists: do not use Linux linker flag on macOS
This commit is contained in:
commit
172f42bccf
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ if(FAST_DOUBLE_PARSER_SANITIZE)
|
|||
target_compile_options(unit PUBLIC -fsanitize=address -fno-omit-frame-pointer -fsanitize=undefined -fno-sanitize-recover=all)
|
||||
target_link_options(unit PUBLIC -fsanitize=address -fno-omit-frame-pointer -fsanitize=undefined -fno-sanitize-recover=all)
|
||||
# Ubuntu bug for GCC 5.0+ (safe for all versions)
|
||||
if (CMAKE_COMPILER_IS_GNUCC)
|
||||
if (CMAKE_COMPILER_IS_GNUCC AND NOT APPLE)
|
||||
target_link_libraries(unit PUBLIC -fuse-ld=gold)
|
||||
endif()
|
||||
endif()
|
||||
|
|
Loading…
Add table
Reference in a new issue