Changes between Initial Version and Version 2 of Ticket #64784
- Timestamp:
- Apr 5, 2022, 6:28:10 PM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #64784
-
Property
Status
changed from
new
toassigned
- Property Owner set to raimue
-
Property
Version
changed from
2.7.1
to2.7.2
-
Property
Summary
changed from
brotli fails to build for ppc+ppc64 on Leopard: gcc-4.2: -E, -S, -save-temps and -M options are not allowed with multiple -arch flags
tobrotli fails to build for ppc+ppc64 on Leopard: need to add muniversal PortGroup
-
Property
Status
changed from
-
Ticket #64784 – Description
initial v2 1 As it is, `brotli` fails as `+universal` on Leopard with: `gcc-4.2: -E, -S, -save-temps and -M options are not allowed with multiple -arch flags`. 1 2 2 3 {{{ … … 52 53 Command failed: cd "/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_archivers_brotli/brotli/work/brotli-1.0.9" && /usr/bin/make -j4 -w all VERBOSE=ON 53 54 Exit code: 2 55 }}} 54 56 57 However once `muniversal 1.0` is added, the port builds: 58 59 {{{ 60 36-109:~ svacchanda$ port -v installed brotli 61 The following ports are currently installed: 62 brotli @1.0.9_2 requested_variants='-universal' platform='darwin 9' archs='ppc64' date='2022-03-08T06:46:35+0800' 63 brotli @1.0.9_2+universal (active) requested_variants='+universal' platform='darwin 9' archs='ppc ppc64' date='2022-04-06T02:25:21+0800' 55 64 }}}