diff --git a/Makefile b/Makefile index a607bec7d25e3977a37d44eba353eafe58891fec..644ed9fa0ceffb2edfa09c9b363bd63a6363cf96 100644 --- a/Makefile +++ b/Makefile @@ -113,7 +113,7 @@ $(BUILD)/debug/libc.so: $(BUILD)/debug/librelibc.a $(BUILD)/pthreads-emb/libpthr $(BUILD)/debug/librelibc.a: $(SRC) CARGO_INCREMENTAL=0 $(CARGO) rustc $(CARGOFLAGS) -- --emit link=$@ $(RUSTCFLAGS) # FIXME: Remove the following line. It's only required since xargo automatically links with compiler_builtins, which conflicts with the compiler_builtins that rustc always links with. - $(OBJCOPY) $@ -W __divti3 -W __muloti4 -W __udivti3 + $(OBJCOPY) $@ -W __divti3 -W __muloti4 -W __udivti3 -W __floattidf touch $@ $(BUILD)/debug/crt0.o: $(SRC) @@ -152,7 +152,7 @@ $(BUILD)/release/libc.so: $(BUILD)/release/librelibc.a $(BUILD)/pthreads-emb/lib $(BUILD)/release/librelibc.a: $(SRC) CARGO_INCREMENTAL=0 $(CARGO) rustc --release $(CARGOFLAGS) -- --emit link=$@ $(RUSTCFLAGS) # FIXME: Remove the following line. It's only required since xargo automatically links with compiler_builtins, which conflicts with the compiler_builtins that rustc always links with. - $(OBJCOPY) $@ -W __divti3 -W __muloti4 -W __udivti3 + $(OBJCOPY) $@ -W __divti3 -W __muloti4 -W __udivti3 -W __floattidf touch $@ $(BUILD)/release/crt0.o: $(SRC)