32 lines
872 B
Plaintext
32 lines
872 B
Plaintext
me = "GCC"
|
|
version = '4.8.2'
|
|
|
|
homepage = 'http://gcc.gnu.org/'
|
|
description = ""The GNU Compiler Collection includes front ends for C, C++,
|
|
Objective-C, Fortran, Java, and Ada,
|
|
as well as libraries for these languages (libstdc++, libgcj,...).""
|
|
|
|
toolchain = {'name': 'dummy', 'version': 'dummy'}
|
|
|
|
source_urls = [
|
|
'ftp://gcc.gnu.org/pub/gcc/snapshots/4.8.2-RC-20131009/', # GCC
|
|
auto-resolving HTTP mirror
|
|
'http://ftpmirror.gnu.org/gmp', # idem for GMP
|
|
'http://ftpmirror.gnu.org/mpfr', # idem for MPFR
|
|
'http://www.multiprecision.org/mpc/download', # MPC official
|
|
]
|
|
sources = [
|
|
'gcc-4.8.2-RC-20131009.tar.bz2',
|
|
'gmp-5.1.3.tar.bz2',
|
|
'mpfr-3.1.2.tar.gz',
|
|
'mpc-1.0.1.tar.gz',
|
|
]
|
|
|
|
languages = ['c', 'c++', 'fortran']
|
|
|
|
# building GCC sometimes fails if make parallelism is too high, so let's limit
|
|
# it
|
|
maxparallel = 4
|
|
|
|
moduleclass = 'compiler'
|