Skip to content

Commit 700279f

Browse files
committed
Auto merge of #33561 - alexcrichton:fix-nightiles, r=brson
mk: Fix dependencies of unwind crate on musl The libunwind.a library was accidentally only being included for the standard library, not the new unwind crate which implements an unwinder.
2 parents e37f859 + 3e12c78 commit 700279f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

mk/cfg/i686-unknown-linux-musl.mk

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,5 @@ CFG_THIRD_PARTY_OBJECTS_i686-unknown-linux-musl := crt1.o crti.o crtn.o
2525
CFG_INSTALLED_OBJECTS_i686-unknown-linux-musl := crt1.o crti.o crtn.o
2626

2727
NATIVE_DEPS_libc_T_i686-unknown-linux-musl += libc.a
28-
NATIVE_DEPS_std_T_i686-unknown-linux-musl += libunwind.a crt1.o crti.o crtn.o
28+
NATIVE_DEPS_std_T_i686-unknown-linux-musl += crt1.o crti.o crtn.o
29+
NATIVE_DEPS_unwind_T_i686-unknown-linux-musl += libunwind.a

mk/cfg/x86_64-unknown-linux-musl.mk

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,5 @@ CFG_THIRD_PARTY_OBJECTS_x86_64-unknown-linux-musl := crt1.o crti.o crtn.o
2525
CFG_INSTALLED_OBJECTS_x86_64-unknown-linux-musl := crt1.o crti.o crtn.o
2626

2727
NATIVE_DEPS_libc_T_x86_64-unknown-linux-musl += libc.a
28-
NATIVE_DEPS_std_T_x86_64-unknown-linux-musl += libunwind.a crt1.o crti.o crtn.o
28+
NATIVE_DEPS_std_T_x86_64-unknown-linux-musl += crt1.o crti.o crtn.o
29+
NATIVE_DEPS_unwind_T_x86_64-unknown-linux-musl += libunwind.a

0 commit comments

Comments
 (0)