diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-02-17 23:51:23 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-02-17 23:51:23 -0500 |
commit | 61c2cf877ba7518a46d0391f119b3251e5a136b2 (patch) | |
tree | 1b52ea52bf8635043318f337c0c6c59b40f77d2b /tools | |
parent | 3c870263c5a14b77628f83c06852a6f340b2443f (diff) | |
download | musl-61c2cf877ba7518a46d0391f119b3251e5a136b2.tar.gz musl-61c2cf877ba7518a46d0391f119b3251e5a136b2.tar.xz musl-61c2cf877ba7518a46d0391f119b3251e5a136b2.zip |
remove -std=gnu99 from musl-gcc wrapper
while probably desirable, changing the default language variant is outside the scope of the wrapper's responsibility.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/gen-musl-gcc.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/gen-musl-gcc.sh b/tools/gen-musl-gcc.sh index b727a8ed..7b80fda6 100644 --- a/tools/gen-musl-gcc.sh +++ b/tools/gen-musl-gcc.sh @@ -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" |