Changes between Initial Version and Version 2 of Ticket #46276


Ignore:
Timestamp:
Dec 20, 2014, 12:58:06 AM (9 years ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #46276

    • Property Keywords tiger added
  • Ticket #46276 – Description

    initial v2  
    22
    33There are two problems preventing compilation:
    4 1) ld does not have "-compatibility_version" nor "-current_version" switches. In Tiger those are "-dylib_compatibility_version" and "-dylib_current_versions". As those latter are also supported in latest XCodes, the patch can be unconditional.
    5 2) Apple assembler does not have ".balign" directive. Either ".align" should be used (as in older icu releases) or compilation be made with non-apple gcc. Taken approach is using ".align".
     41. ld does not have "-compatibility_version" nor "-current_version" switches. In Tiger those are "-dylib_compatibility_version" and "-dylib_current_versions". As those latter are also supported in latest XCodes, the patch can be unconditional.
     52. Apple assembler does not have ".balign" directive. Either ".align" should be used (as in older icu releases) or compilation be made with non-apple gcc. Taken approach is using ".align".
    66
    77Attached patch fixes both issues.