issues
search
hildebra
/
sdm
Fast tool for sequence related tasks
GNU General Public License v3.0
6
stars
5
forks
source link
Fix compile flags
#7
Open
nsoranzo
opened
3 years ago
nsoranzo
commented
3 years ago
Add
-mmacosx-version-min=10.12
to macOS preprocessor flags because 'shared_mutex' is available only since macOS 10.12
-pthread
is a preprocessor flag
-lrt
is a Linux-specific linker flag
-lpthread
is a linker flag
--whole-archive
is ld-specific, doesn't work on clang
-mmacosx-version-min=10.12
to macOS preprocessor flags because 'shared_mutex' is available only since macOS 10.12-pthread
is a preprocessor flag-lrt
is a Linux-specific linker flag-lpthread
is a linker flag--whole-archive
is ld-specific, doesn't work on clang