|
Message-Id: <1467825725-11116-1-git-send-email-aidanhs@cantab.net> Date: Wed, 6 Jul 2016 18:22:05 +0100 From: Aidan Hobson Sayers <aidanhs@...tab.net> To: musl@...ts.openwall.com Cc: Aidan Hobson Sayers <aidanhs@...tab.net> Subject: [PATCH 1/1] Use compiler includes for musl-clang, like musl-gcc #include <unwind.h> int main() {} The above currently compiles with musl-gcc but not with musl-clang. This patch fixes the latter. --- tools/musl-clang.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/musl-clang.in b/tools/musl-clang.in index 623de6f..0018932 100644 --- a/tools/musl-clang.in +++ b/tools/musl-clang.in @@ -24,7 +24,7 @@ exec $cc \ -B"$thisdir" \ -fuse-ld=musl-clang \ -static-libgcc \ - -nostdinc \ + -nostdlibinc \ --sysroot "$libc" \ -isystem "$libc_inc" \ -L-user-start \ -- 1.9.1
Powered by blists - more mailing lists
Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.