Update libstd, remove openlibm (now inside of libstd)
This commit is contained in:
parent
9ba04a065e
commit
27375c89c2
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -10,9 +10,6 @@
|
||||||
[submodule "ion"]
|
[submodule "ion"]
|
||||||
path = programs/ion
|
path = programs/ion
|
||||||
url = https://github.com/redox-os/ion.git
|
url = https://github.com/redox-os/ion.git
|
||||||
[submodule "openlibm"]
|
|
||||||
path = openlibm
|
|
||||||
url = https://github.com/redox-os/openlibm.git
|
|
||||||
[submodule "programs/coreutils"]
|
[submodule "programs/coreutils"]
|
||||||
path = programs/coreutils
|
path = programs/coreutils
|
||||||
url = https://github.com/redox-os/coreutils.git
|
url = https://github.com/redox-os/coreutils.git
|
||||||
|
|
6
Makefile
6
Makefile
|
@ -227,10 +227,10 @@ $(BUILD)/librand.rlib: rust/src/librand/lib.rs $(BUILD)/libcore.rlib
|
||||||
$(BUILD)/librustc_unicode.rlib: rust/src/librustc_unicode/lib.rs $(BUILD)/libcore.rlib
|
$(BUILD)/librustc_unicode.rlib: rust/src/librustc_unicode/lib.rs $(BUILD)/libcore.rlib
|
||||||
$(RUSTC) $(RUSTCFLAGS) -o $@ $<
|
$(RUSTC) $(RUSTCFLAGS) -o $@ $<
|
||||||
|
|
||||||
openlibm/libopenlibm.a:
|
libstd/openlibm/libopenlibm.a:
|
||||||
CROSSCC=$(CC) CFLAGS=-fno-stack-protector make -C openlibm libopenlibm.a
|
CROSSCC=$(CC) CFLAGS=-fno-stack-protector make -C libstd/openlibm libopenlibm.a
|
||||||
|
|
||||||
$(BUILD)/libopenlibm.a: openlibm/libopenlibm.a
|
$(BUILD)/libopenlibm.a: libstd/openlibm/libopenlibm.a
|
||||||
mkdir -p $(BUILD)
|
mkdir -p $(BUILD)
|
||||||
cp $< $@
|
cp $< $@
|
||||||
|
|
||||||
|
|
2
libstd
2
libstd
|
@ -1 +1 @@
|
||||||
Subproject commit 263ed59929e68073bd4e47ba07f2fbe283ee2854
|
Subproject commit b42d1d72320a5f75e547d1dbfc8b9cf9fa124056
|
1
openlibm
1
openlibm
|
@ -1 +0,0 @@
|
||||||
Subproject commit 3c837e79655c4be724efb945a6345ec97c07635c
|
|
Loading…
Reference in a new issue