[Mod] enable optimize under Linux build

This commit is contained in:
nanoric 2019-04-15 12:26:49 -04:00
parent 73e135b685
commit 2e341bffc9

View File

@ -65,6 +65,7 @@ if platform.uname().system == "Windows":
extra_link_args = []
else:
compiler_flags = ["-std=c++17",
"-O3", # Optimization
"-Wno-delete-incomplete", "-Wno-sign-compare",
]
extra_link_args = ["-lstdc++"]