diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000000000000000000000000000000000000..39b409c6d0d03d47b6f3d5857adecef02f5475ec --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "libc-artifacts"] + path = libc-artifacts + url = https://github.com/redox-os/libc-artifacts.git diff --git a/Xargo.toml b/Xargo.toml new file mode 100644 index 0000000000000000000000000000000000000000..4cd054db02fb298d90391dd184001cfe26b95c8c --- /dev/null +++ b/Xargo.toml @@ -0,0 +1,2 @@ +[target.x86_64-unknown-redox.dependencies.std] +features = [] diff --git a/cook.sh b/cook.sh index 45a78038d96752a93e294d00870c05071dc3bf96..645615a64484d50d0d0a656e411468de9c4d347e 100755 --- a/cook.sh +++ b/cook.sh @@ -1,9 +1,10 @@ #!/bin/bash export RUST_TARGET_PATH="$PWD/targets" -export RUSTFLAGS="--cfg redox" export CARGOFLAGS= +export CFLAGS="-fno-stack-protector -U_FORTIFY_SOURCE" TARGET=x86_64-unknown-redox +ROOT="$PWD" REPO="$PWD/repo/$TARGET" set -e @@ -33,6 +34,7 @@ function op { ;; build) pushd build > /dev/null + cp -r "$ROOT/Xargo.toml" "$ROOT/libc-artifacts" . xargo build --target "$TARGET" --release $CARGOFLAGS popd > /dev/null ;; diff --git a/libc-artifacts b/libc-artifacts new file mode 160000 index 0000000000000000000000000000000000000000..b0e2a74a505d0bc6ffea05d81fe239b1beb5c246 --- /dev/null +++ b/libc-artifacts @@ -0,0 +1 @@ +Subproject commit b0e2a74a505d0bc6ffea05d81fe239b1beb5c246 diff --git a/recipes/netutils/recipe.sh b/recipes/netutils/recipe.sh new file mode 100644 index 0000000000000000000000000000000000000000..5992a5e2f23f7427220824334c81082cadbaf3ca --- /dev/null +++ b/recipes/netutils/recipe.sh @@ -0,0 +1 @@ +GIT=https://github.com/redox-os/netutils.git diff --git a/setup.sh b/setup.sh index e337617130f38eaa23c61d4da6307e08964ba848..376aef1979bb069098dc6a40320ed4579ebbd990 100755 --- a/setup.sh +++ b/setup.sh @@ -12,10 +12,4 @@ then cargo install -f xargo fi -echo "Building libstd" -./cook.sh libstd unfetch -./cook.sh libstd fetch -./cook.sh libstd build -cp recipes/libstd/build/target/x86_64-unknown-redox/release/deps/*.rlib ~/.xargo/lib/rustlib/x86_64-unknown-redox/lib/ - echo "cook.sh is ready to use" diff --git a/targets/x86_64-unknown-redox.json b/targets/x86_64-unknown-redox.json index d981254ef0a0964d17941b8db4e66b64d5e160ff..362ef9ccce60f49901d3a2042b267c9c4f8de97d 100644 --- a/targets/x86_64-unknown-redox.json +++ b/targets/x86_64-unknown-redox.json @@ -8,8 +8,8 @@ "env": "", "vendor": "unknown", "target-family": "redox", - "pre-link-args": ["-m64", "-nostdlib", "-static"], - "post-link-args": [], + "pre-link-args": ["-m64", "-Wl,--as-needed", "-Wl,-z,noexecstack", "-nostartfiles", "-nostdlib", "-static"], + "late-link-args": ["libc-artifacts/lib/crt0.o", "libc-artifacts/lib/libm.a", "libc-artifacts/lib/libc.a", "libc-artifacts/lib/libgcc.a"], "features": "", "dynamic-linking": false, "executables": true, @@ -22,5 +22,8 @@ "no-compiler-rt": true, "no-default-libraries": true, "position-independent-executables": false, - "has-elf-tls": true + "lib-allocation-crate": "alloc_system", + "exe-allocation-crate": "alloc_system", + "has-elf-tls": true, + "panic-strategy": "abort" }