diff options
author | Li Jin <dragon-fly@qq.com> | 2020-03-25 09:29:05 +0800 |
---|---|---|
committer | Li Jin <dragon-fly@qq.com> | 2020-03-25 09:29:05 +0800 |
commit | 1218119c48e971f61cddb549addf8cd3d221ab4e (patch) | |
tree | 43717375b5844c1335052a271975f6b6b2fc358f | |
parent | 226e82027d3585b8648816f3ba35353e0ea43c20 (diff) | |
download | yuescript-1218119c48e971f61cddb549addf8cd3d221ab4e.tar.gz yuescript-1218119c48e971f61cddb549addf8cd3d221ab4e.tar.bz2 yuescript-1218119c48e971f61cddb549addf8cd3d221ab4e.zip |
replace g++ with clang-9 build on Linux
-rw-r--r-- | makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -45,7 +45,7 @@ ifeq ($(UNAME_S),Darwin) | |||
45 | CXX ?= clang | 45 | CXX ?= clang |
46 | else | 46 | else |
47 | LINK_FLAGS += -lstdc++fs | 47 | LINK_FLAGS += -lstdc++fs |
48 | CXX ?= g++-9 | 48 | CXX ?= clang-9 |
49 | endif | 49 | endif |
50 | 50 | ||
51 | # Function used to check variables. Use on the command line: | 51 | # Function used to check variables. Use on the command line: |