This commit is contained in:
blueloveTH 2023-04-22 22:00:50 +08:00
parent f7af705367
commit 41ef71a580

View File

@ -58,7 +58,7 @@ r'''/*
shutil.copy("src/main.cpp", "amalgamated/main.cpp")
if sys.platform == 'linux':
ok = os.system("g++ -o pocketpy amalgamated/main.cpp --std=c++17")
ok = os.system("clang++ -o pocketpy amalgamated/main.cpp --std=c++17 -stdlib=libc++")
if ok == 0:
print("Test build success!")
os.remove("pocketpy")