Changes between Initial Version and Version 1 of Ticket #45971


Ignore:
Timestamp:
Apr 30, 2015, 10:24:11 AM (9 years ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

There is, by the way, no need to enclose MAKEINFO=/usr/bin/makeinfo in quotation marks in your patch.

Forcing the use of a gcc port is usually not desired.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #45971 – Description

    initial v1  
    11powerpc-rtems-gcc @4.2.3 fails to build due to 2 reasons:
    22
    3 1-) texinfo5: The file main.log_makeinfo5 contains the related error log. One workaround is to use makeinfo from OS X Yosemite which has the version 4.8. Passing parameters below to macports invocation should mitigate this problem:
    4 {{{build.args="MAKEINFO=/usr/bin/makeinfo" destroot.args="MAKEINFO=/usr/bin/makeinfo"}}}
     31. texinfo5: The file main.log_makeinfo5 contains the related error log. One workaround is to use makeinfo from OS X Yosemite which has the version 4.8. Passing parameters below to macports invocation should mitigate this problem:
     4{{{
     5build.args="MAKEINFO=/usr/bin/makeinfo" destroot.args="MAKEINFO=/usr/bin/makeinfo"
     6}}}
    57
    6 2-) clang: The file main.log_makeinfo4 contains the related error log. A workaround is to use gcc (gcc49 works, but I think any gcc4x should work). Passing parameter below to macports invocation should mitigate this problem:
    7 {{{configure.compiler=macports-gcc-4.9}}}
     82. clang: The file main.log_makeinfo4 contains the related error log. A workaround is to use gcc (gcc49 works, but I think any gcc4x should work). Passing parameter below to macports invocation should mitigate this problem:
     9{{{
     10configure.compiler=macports-gcc-4.9
     11}}}
    812
    9 Two workarounds combined: {{{build.args="MAKEINFO=/usr/bin/makeinfo" destroot.args="MAKEINFO=/usr/bin/makeinfo" configure.compiler=macports-gcc-4.9}}}
     13Two workarounds combined:
     14
     15{{{
     16build.args="MAKEINFO=/usr/bin/makeinfo" destroot.args="MAKEINFO=/usr/bin/makeinfo" configure.compiler=macports-gcc-4.9
     17}}}
    1018
    1119I am also attaching a patch file proposal that combines the two workarounds and depends on gcc49.