Bug 1470449 - silence some warnings during clang bootstrap; r=chmanchester

This change makes interactive usage slightly nicer and logs somewhat shorter.
This commit is contained in:
Nathan Froyd
2018-06-26 12:02:36 -04:00
parent 5c37af92e1
commit 5a9b972ebc

View File

@@ -512,7 +512,8 @@ if __name__ == "__main__":
extra_cflags = ["-static-libgcc"]
extra_cxxflags = ["-static-libgcc", "-static-libstdc++"]
extra_cflags2 = ["-fPIC"]
extra_cxxflags2 = ["-fPIC", "-static-libstdc++"]
# Silence clang's warnings about arguments not being used in compilation.
extra_cxxflags2 = ["-fPIC", '-Qunused-arguments', "-static-libstdc++"]
extra_asmflags = []
extra_ldflags = []