Ticket #54949: gcc5.5-java.diff

File gcc5.5-java.diff, 3.5 KB (added by nortcele, 7 years ago)

Diff for gcc-5.5 and java support

  • Portfile

    old new  
    77name                gcc5
    88
    99epoch               2
    10 version             5.4.0
    11 revision            2
     10version             5.5.0
    1211platforms           darwin
    1312categories          lang
    1413maintainers         nomaintainer
     
    1817long_description    The GNU compiler collection, including front ends for \
    1918                    C, C++, Objective-C, Objective-C++, Fortran and Java.
    2019
     20set release         -RC-20171002
    2121homepage            http://gcc.gnu.org/
    2222master_sites        ftp://ftp.funet.fi/pub/mirrors/sources.redhat.com/pub/gcc/releases/gcc-${version}/ \
    2323                    ftp://ftp.gwdg.de/pub/linux/gcc/releases/gcc-${version}/ \
    2424                    ftp://gcc.ftp.nluug.nl/mirror/languages/gcc/releases/gcc-${version}/ \
    2525                    ftp://gcc.gnu.org/pub/gcc/releases/gcc-${version}/ \
    26                     gnu:gcc/gcc-${version}
     26                    gnu:gcc/gcc-${version} \
     27                    ftp://gcc.gnu.org/pub/gcc/snapshots/${version}${release}/ \
     28                    ftp://sourceware.org/pub/java/
    2729
    28 distname            gcc-${version}
     30distname            gcc-${version}${release}
    2931use_bzip2           yes
    3032
    31 checksums           rmd160  7ae3413ca7e90bb21e65e637c02ddf2b675b45f4 \
    32                     sha256  608df76dec2d34de6558249d8af4cbee21eceddbcb580d666f7a5a583ca3303a
     33distfiles           gcc-${version}${release}.tar.bz2 \
     34                    ecj-4.9.jar
     35
     36checksums           gcc-${version}${release}.tar.bz2 \
     37                    rmd160  0645fb833c2e7170cc97f5dbc4d45ebf9f391152 \
     38                    sha256  2034063aa1ae199651eeb0f7dd0906bdb5fe0c22213e474e5173545d9556ba95 \
     39                    ecj-4.9.jar \
     40                    rmd160  eb1b19d9ac0e9e265bf993f38b9576e3c710e91e \
     41                    sha256  9506e75b862f782213df61af67338eb7a23c35ff425d328affc65585477d34cd
    3342
    3443depends_lib         port:cctools \
    3544                    port:gmp \
     
    4554depends_skip_archcheck-append gcc_select ld64 cctools
    4655license_noconflict  gmp mpfr ppl libmpc
    4756
    48 # Handle OS X deployment targets correctly (GCC PR target/63810
    49 # <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63810>).
    50 patchfiles-append   macosx-version-min.patch
     57# Provide linkage for MacPorts libiconv in gcj
     58patchfiles-append   gcj-libiconv-linkage.patch
     59
     60extract.only        gcc-${version}${release}.tar.bz2
    5161
    5262set major           [lindex [split ${version} .-] 0]
    5363
    5464platform darwin {
     65    if {${os.major} > 14} {
     66        # Hack around boehm-gc and associated gcj failures from recompilation
     67        # of libunwind.dylib with Apple Clang in macOS > 10.11 by reducing
     68        # alignment to 2
     69        patchfiles-append   boehm-gc-darwin15-hack.patch
     70    }
    5571    configure.pre_args-append --build=${build_arch}-apple-darwin${os.major}
    5672}
    5773
     
    6884                    --disable-nls \
    6985                    --program-suffix=-mp-${major} \
    7086                    --with-gxx-include-dir=${prefix}/include/${name}/c++/ \
     87                    --with-libiconv-prefix=${prefix} \
    7188                    --with-gmp=${prefix} \
    7289                    --with-mpfr=${prefix} \
    7390                    --with-mpc=${prefix} \
     
    99116                    OTOOL=${prefix}/bin/otool \
    100117                    OTOOL64=${prefix}/bin/otool
    101118
     119post-extract {
     120    copy ${distpath}/ecj-4.9.jar ${worksrcpath}/ecj.jar
     121}
     122
    102123pre-configure {
    103124    configure.args-append --with-pkgversion="MacPorts ${name} ${version}_${revision}${portvariants}"
    104125