diff options
author | Roland Reichwein <mail@reichwein.it> | 2021-01-24 19:08:48 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2021-01-24 19:08:48 +0100 |
commit | d8bddb9dc248bb3cc04116c97259ea6f5c13e6d0 (patch) | |
tree | 77eaa092f39b578a1c29ae9e0b34c64790a2b80b /Makefile | |
parent | 5f7ae62649c79683597e33af673ae1dcf5267917 (diff) |
Fix empty tests
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -16,6 +16,20 @@ LDLIBS+=\ -lboost_timer \ -lboost_system \ +ifeq ($(CXX),clang++-11) +LIBS+= \ +-fuse-ld=lld-11 \ +-lc++ \ +-lc++abi +#-lc++fs +#-lstdc++ \ +#-lstdc++fs +else +LIBS+= \ +-lstdc++ +#-lstdc++fs +endif + SRC=\ src/recode.cpp \ src/test-unicode.cpp |