Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Corrected typo in locating addons |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
3694721a11901077e84fedff90228b47 |
| User & Date: | rkeene 2016-01-27 03:37:15 |
Context
|
2016-01-27
| ||
| 03:45 | Build-CC 0.11 check-in: 098b857937 user: rkeene tags: trunk, 0.11 | |
| 03:37 | Corrected typo in locating addons check-in: 3694721a11 user: rkeene tags: trunk | |
| 03:33 | Added patches for GMP 6.0.0a on ARM platforms check-in: f40daa93ae user: rkeene tags: trunk | |
Changes
Changes to build-cc.
| ︙ | ︙ | |||
254 255 256 257 258 259 260 |
if [ "${use_gnu_as}" = "1" ]; then
BUILD_CC_GCC_CONFIGURE_EXTRA="${BUILD_CC_GCC_CONFIGURE_EXTRA} --with-gnu-as --with-as=${CCDIR}/bin/${CCNAME}-as"
fi
## Determine platform file tarball
PLATFORM_TARBALL="${BUILD_CC_PLATFORMDIR}/${CCNAME}-platform.tar.bz2"
| | | 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 |
if [ "${use_gnu_as}" = "1" ]; then
BUILD_CC_GCC_CONFIGURE_EXTRA="${BUILD_CC_GCC_CONFIGURE_EXTRA} --with-gnu-as --with-as=${CCDIR}/bin/${CCNAME}-as"
fi
## Determine platform file tarball
PLATFORM_TARBALL="${BUILD_CC_PLATFORMDIR}/${CCNAME}-platform.tar.bz2"
ADDONS_TARBALL="${BUILD_CC_PLATFORMDIR}/${CCNAME}-addons.tar.bz2"
### Install platform files (needed for libgcc)
(
mkdir -p "${CCDIR}/${CCNAME}"
cd "${CCDIR}/${CCNAME}" || exit 1
if [ ! -e 'usr' ]; then
|
| ︙ | ︙ |