Use /bin/sh and /bin/cc ion scripts

This commit is contained in:
Ian Douglas Scott 2017-06-14 21:59:48 -07:00
parent 7f7f3efb24
commit c54bd0dc12
No known key found for this signature in database
GPG Key ID: 4924E10E199B5959
2 changed files with 4 additions and 1 deletions

View File

@ -44,6 +44,7 @@ function recipe_clean {
function recipe_stage {
dest="$(realpath $1)"
make DESTDIR="$dest" install
cp "$1/bin/dash" "$1/bin/sh" # TODO: symlink when Redox supports them
echo -e '#!/bin/ion\ndash @args[1..]' > "$1/bin/sh"
chmod a+x "$1/bin/sh"
skip=1
}

View File

@ -53,5 +53,7 @@ function recipe_stage {
dest="$(realpath $1)"
make DESTDIR="$dest" install-gcc install-target-libgcc
find "$dest"/{bin,libexec} -exec x86_64-elf-redox-strip {} ';' 2> /dev/null
echo -e '#!/bin/ion\ngcc @args[1..]' > "$1/bin/cc"
chmod a+x "$1/bin/cc"
skip=1
}