diff options
author | Roland Reichwein <mail@reichwein.it> | 2021-02-04 15:21:11 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2021-02-04 15:21:11 +0100 |
commit | 6a12dddc641be34b323835a495399715790811e0 (patch) | |
tree | 566278167dd803dca69b85794770d2cf4a46ab53 /Makefile | |
parent | aac210c3ac70679f2d805b3a7ab4d4ad9a6a6808 (diff) |
Bugfixes
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -36,6 +36,7 @@ LIBS+=-fuse-ld=lld endif ifeq ($(COMPILER_SUITE),clang) +# libc++ is buggy for C++20: std::hash<char8_t> not implemented. Fixed in LLVM-12 CXXFLAGS+=-stdlib=libc++ endif @@ -55,7 +56,7 @@ LIBS+= \ else LIBS+= \ -lstdc++ -#-lstdc++fs +-lstdc++fs endif SRC=\ |