Once more...

This commit is contained in:
Kevin Lange 2012-12-07 20:29:10 -08:00
parent a1c17488d2
commit dae754a52d
2 changed files with 7 additions and 1 deletions

View File

@ -17,4 +17,6 @@ pushd /home/build/osdev/toolchain
wget "https://github.com/downloads/klange/osdev/toolchain-2012-12-07.tar.gz"
tar -xaf "toolchain-2012-12-07.tar.gz"
. activate.sh || exit 1
echo $PATH
$TARGET-gcc --version
popd

View File

@ -1,7 +1,11 @@
#!/bin/bash
unset CC
. toolchain/activate.sh || exit 1
pushd /home/build/osdev/toolchain
. activate.sh || exit 1
echo $PATH
$TARGET-gcc --version
popd
pushd userspace
make || exit 1
popd