mirror of
https://github.com/brain-hackers/cegcc-build.git
synced 2024-11-01 07:48:03 +09:00
27 lines
567 B
ReStructuredText
27 lines
567 B
ReStructuredText
This is meta-repository to build entire CeGCC toolchain.
|
|
|
|
Clone this repository using::
|
|
|
|
git clone git://github.com/MaxKellermann/cegcc-build
|
|
|
|
To build::
|
|
|
|
cd cegcc-build
|
|
git submodule update --init
|
|
mkdir /tmp/cegcc-output
|
|
cd /tmp/cegcc-output
|
|
$OLDPWD/build.sh --prefix=/where/to/install
|
|
|
|
If you won't specify `--prefix`, it will install to
|
|
``/opt/cegcc``
|
|
|
|
To update afterwards::
|
|
|
|
git pull
|
|
git submodule update
|
|
cd build
|
|
./build-mingw32ce.sh --prefix=/where/to/install
|
|
|
|
(After update, to get 100% clean-room, you may want to rebuild
|
|
everything from scratch.)
|