Created
June 22, 2013 10:37
-
-
Save lugu/5840384 to your computer and use it in GitHub Desktop.
Install a toolchain on ARM chromebook from http://georgemcbay.blogspot.tw/2012/10/go-on-samsung-arm-chromebook_25.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mkdir ~/toolchain | |
cd ~/toolchain | |
wget http://distfiles.gentoo.org/releases/arm/autobuilds/current-stage3-armv7a_hardfp/stage3-armv7a_hardfp-20130209.tar.bz2 | |
export C_INCLUDE_PATH=~/toolchain/usr/include | |
export LD_LIBRARY_PATH=~/toolchain/usr/lib:~/toolchain/usr/lib/binutils/armv7a-hardfloat-linux-gnueabi/2.22 | |
export PATH=$PATH:~/toolchain/usr/armv7a-hardfloat-linux-gnueabi/gcc-bin/4.6.3:~/toolchain/usr/armv7a-hardfloat-linux-gnueabi/binutils-bin/2.22 | |
sed -i 's/\/usr/\/home\/chronos\/user\/toolchain\/usr/g' ~/toolchain/usr/lib/libc.so | |
sed -i 's/\/usr/\/home\/chronos\/user\/toolchain\/usr/g' ~/toolchain/usr/lib/libpthread.so |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment