-
Notifications
You must be signed in to change notification settings - Fork 0
Env
CromFr edited this page Dec 10, 2014
·
5 revisions
Via debian package manager:
#!bash
sudo apt-get install dub
Via debian package manager:
#!bash
sudo apt-get install gdc
Please contact [email protected] to get the gdc precompiled binaries for ARM
mkdir /tmp/crossgdc
cd /tmp/crossgdc
#!bash
CTNG_VERSION=1.19.0
cd /tmp/crossgdc
wget http://crosstool-ng.org/download/crosstool-ng/crosstool-ng-${CTNG_VERSION}.tar.bz2
tar xf crosstool-ng-${CTNG_VERSION}.tar.bz2
cd crosstool-ng-${CTNG_VERSION}
./configure --prefix=$PWD/installed
make -j8 && make install
export PATH=$PATH:$PWD/installed/bin
#!bash
GCC_VERSION=4.8.2
cd /tmp/crossgdc
wget http://gcc-uk.internet.bs/releases/gcc-${GCC_VERSION}/gcc-${GCC_VERSION}.tar.bz2
tar xf gcc-${GCC_VERSION}.tar.bz2
#!bash
cd /tmp/crossgdc
git clone https://github.com/D-Programming-GDC/GDC.git
cd GDC
git checkout gdc-4.8
./setup-gcc.sh /tmp/crossgdc/gcc-${GCC_VERSION}
Open .config and save it in /tmp/crossgdc/.config
You may need to update the line CT_CC_CUSTOM_LOCATION to match the current GCC version.
Change CT_PREFIX_DIR to match the installation path where your non-root user have write access (/tmp/crossgdc/${CT_TARGET}
)
#!bash
cd /tmp/crossgdc
ct-ng build arm-unknown-linux-gnueabi
Notes:
- This may take much time to download needed source and build everything
- Firewall may block some downloads and stop the process
- Keep your fingers crossed
You need ddox to generate a nice documentation:
#!bash
cd /tmp
git clone https://github.com/rejectedsoftware/ddox.git
cd ddox
dub build
sudo cp ddox /usr/local/bin
Authors:
- Thomas Abot (Triskell)
- Thibaut Charles (CromFr)