2018-03-21 20:06:21 +09:00
|
|
|
This is meta-repository to build entire CeGCC toolchain.
|
|
|
|
|
|
|
|
Clone this repository using::
|
|
|
|
|
2018-09-04 19:05:58 +09:00
|
|
|
git clone git://github.com/MaxKellermann/cegcc-build
|
2018-03-21 20:06:21 +09:00
|
|
|
|
|
|
|
To build::
|
|
|
|
|
|
|
|
cd cegcc-build
|
2018-10-23 05:30:23 +09:00
|
|
|
git submodule update --init
|
2018-10-23 05:50:01 +09:00
|
|
|
mkdir /tmp/cegcc-output
|
|
|
|
cd /tmp/cegcc-output
|
2018-10-23 05:51:27 +09:00
|
|
|
$OLDPWD/build.sh --prefix=/where/to/install
|
2018-03-21 20:06:21 +09:00
|
|
|
|
|
|
|
If you won't specify `--prefix`, it will install to
|
2018-10-23 05:51:10 +09:00
|
|
|
``/opt/cegcc``
|
2018-03-21 20:06:21 +09:00
|
|
|
|
|
|
|
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.)
|