remove -std=gnu99 from musl-gcc wrapper
authorRich Felker <dalias@aerifal.cx>
Sat, 18 Feb 2012 04:51:23 +0000 (23:51 -0500)
committerRich Felker <dalias@aerifal.cx>
Sat, 18 Feb 2012 04:51:23 +0000 (23:51 -0500)
while probably desirable, changing the default language variant is
outside the scope of the wrapper's responsibility.

tools/gen-musl-gcc.sh

index b727a8e..7b80fda 100644 (file)
@@ -52,7 +52,7 @@ set -- -specs=/proc/self/fd/3 "$@" \
   -Wl,-dynamic-linker,"$ldso_pathname" -Wl,-nostdlib
 }
 
-set -- -std=gnu99 -nostdinc -nostdlib $nosp \
+set -- -nostdinc -nostdlib $nosp \
   -isystem "$libc_inc" -isystem "$gcc_inc" "$@" \
   -L"$libc_lib" -L"$libgcc"