Changes between Initial Version and Version 2 of Ticket #22379


Ignore:
Timestamp:
Nov 6, 2009, 6:55:50 AM (14 years ago)
Author:
jmroot (Joshua Root)
Comment:

Please remember to preview, use WikiFormatting, and cc the maintainer.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #22379

    • Property Owner changed from macports-tickets@… to jameskyle@…
  • Ticket #22379 – Description

    initial v2  
    11When trying to install gimp-2 with quartz enabledment I stumbled over the problem that the atlas-package doesn't build. Due to some preprocessor definitions the build process activates x86 inline assemblies:
    2 
     2{{{
    33/opt/local/bin/gcc-mp-4.3 -c -DL2SIZE=4194304 -I/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_math_atlas/work/atlas-3.8.3/build/include -I/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_math_atlas/work/atlas-3.8.3/build/..//include -I/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_math_atlas/work/atlas-3.8.3/build/..//include/contrib -DAdd_ -DF77_INTEGER=int -DStringSunStyle -DATL_OS_OSX -DATL_ARCH_PPCG5 -DATL_CPUMHZ=2000 -DATL_AltiVec -DATL_GAS_PPC -DPentiumCPS=2000 -DATL_NCPU=2 -mpowerpc64 -maltivec -mabi=altivec -mcpu=970 -mtune=970 -faltivec -force_cpusubtype_ALL -O3 -fno-schedule-insns -fno-rerun-loop-opt -fPIC -m32 ATL_walltime.c
    44ATL_walltime.c: In function 'ATL_walltime':
     
    1111make[3]: *** [/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_math_atlas/work/atlas-3.8.3/build/bin/xatlas_waitfile] Error 2
    1212make[2]: *** [IStage1] Error 2
    13 
     13}}}
    1414My first assumption is that defining the variable PentiumCPS is causing this hassle. I'll try this patch first:
    15 
     15{{{
    1616--- build/Make.inc.orig 2009-11-04 23:03:40.000000000 +0100
    1717+++ build/Make.inc      2009-11-05 10:08:03.000000000 +0100
     
    2525    ICC = /opt/local/bin/gcc-mp-4.3
    2626    ICCFLAGS = $(CDEFS) -mpowerpc64 -maltivec -mabi=altivec -mcpu=970 -mtune=970 -faltivec -force_cpusubtype_ALL -O3 -fno-schedule-insns -fno-rerun-loop-opt -fPIC -m32
    27 
     27}}}
    2828Will make updates as soon as I know more.