New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 80126


Ignore:
Timestamp:
07/04/11 17:23:08 (4 years ago)
Author:
jeremyhu@…
Message:

apple-gcc42: Version bump to 5666.3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dports/lang/apple-gcc42/Portfile

    r80114 r80126  
    44 
    55name                    apple-gcc42 
    6 version                 5664 
     6version                 5666.3 
    77categories              lang 
    88platforms               darwin 
     
    1515master_sites            http://opensource.apple.com/tarballs/gcc/ 
    1616distname                gcc-${version} 
    17 checksums               md5     cc7f9e2fbae5548a2abec19ba6fd1b78 \ 
    18                         sha1    e1aed094e2a68dc2a877e4c32caddaa1511175ed \ 
    19                         rmd160  c22787601b7dc08fe85d5c3328ad3ea2efa727e1 
     17checksums               md5     188c7769db5c898922b0976fab148a63 \ 
     18                        sha1    292a0cfcfdc061cb083658efd9a3812a120a1f50 \ 
     19                        rmd160  a01d000f89c0e89dd0079dcd202bba7629ba78dc 
    2020 
    2121post-extract { file mkdir ${workpath}/build } 
     
    4545destroot.dir            ${build.dir} 
    4646 
     47# STAGE1_CFLAGS="-O2 -fkeep-inline-functions" : from configure.ac 
     48# BOOT_CFLAGS="-O2 -g" : from Makefile.tpl 
     49# -std=gnu89 : for building with compilers that default to c99 (clang) 
     50# -D_FORTIFY_SOURCE=0 : The built compiler might not understand newer builtins 
     51#                       exposed in libc headers for fortified string functions. 
     52#                       Yes, we need to set both BOOT_CFLAGS and STAGE1_CFLAGS 
     53#                       because STAGE1_CFLAGS is used with xgcc for libgcc 
     54build.args-append BOOT_CFLAGS="-O2 -g -D_FORTIFY_SOURCE=0" STAGE1_CFLAGS="-O2 -fkeep-inline-functions -D_FORTIFY_SOURCE=0 -std=gnu89" 
     55 
    4756post-destroot { 
    4857        file delete -force \ 
     
    5160} 
    5261 
    53 # clang can't build gcc 
    54 if {${configure.compiler} == "clang"} { 
    55     configure.compiler llvm-gcc-4.2  
    56 } 
    57  
    5862livecheck.type          regex 
    5963livecheck.url           [lindex ${master_sites} 0] 
Note: See TracChangeset for help on using the changeset viewer.