Changes between Initial Version and Version 1 of Ticket #42955


Ignore:
Timestamp:
Mar 21, 2014, 3:14:35 AM (11 years ago)
Author:
dbevans (David B. Evans)
Comment:

Will take a look.

In the future, please make sure to Cc: the maintainer of the port and to use WikiFormatting to improve the readability of plain text such as terminal output and quotations from logs.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #42955

    • Property Keywords xcode51 added; mavericks removed
    • Property Status changed from new to assigned
    • Property Owner changed from macports-tickets@… to devans@…
  • Ticket #42955 – Description

    initial v1  
    66
    77Install x264 fails with the following error in config.log:
    8 --
     8{{{
    99clang: error: unknown argument: '-falign-loops=16' [-Wunused-command-line-argument-hard-error-in-future]
    1010clang: note: this will be a hard error (cannot be downgraded to a warning) in the future
    11 --
     11
     12}}}
     13
    1214
    1315It appears that the x264/Portfile:post-path method is not correctly detecting clang, so it is failing to remove the "-falgin-loops=16" configure option.
    1416
    1517The following workaround is not currently usable (downloading llvm-3.3-3.3_1.darwin_13.x86_64.tbz2 times out):
    16 --
     18
     19
     20{{{
    1721sudo port clean x264
    1822sudo port install apple-gcc42
    1923sudo port install x264 configure.compiler=apple-gcc-4.2
    20 --
     24
     25}}}
     26
    2127
    2228The following hack allows install to complete:
    23 --
     29
     30
     31{{{
    2432mkdir ~/ports/multimedia/x264
    2533cd ~/ports/multimedia/x264
     
    3341portindex
    3442sudo port install x264
    35 --
     43
     44}}}
     45
    3646
    3747HTH,