We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 60d9db8 + 6bdcf5c commit 4a32526Copy full SHA for 4a32526
polybuild/polybuild.py
@@ -160,6 +160,8 @@ def poly_build(self, argv) -> bool:
160
compile_command.append("-I" + self.meta.compiler_dir + "/../cxx_libs/include/c++/v1/")
161
compile_command.append("-L" + self.meta.compiler_dir + "/../cxx_libs/lib/")
162
for arg in argv[1:]:
163
+ if arg == "-Wall" or arg == "-Wextra" or arg == "-Wno-unused-parameter" or arg == "-Werror":
164
+ continue
165
compile_command.append(arg)
166
is_linking = self.poly_is_linking(argv)
167
if is_linking:
0 commit comments