Changes between Version 1 and Version 2 of Ticket #5255, comment 5


Ignore:
Timestamp:
Jul 5, 2018, 6:10:25 PM (6 years ago)
Author:
Guido Falsi

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #5255, comment 5

    v1 v2  
    1010Which is caused by this command during compilation:
    1111
     12{{{
    1213c++ -o "../../../binaries/system/ActorEditor" obj/ActorEditor_Release/ActorEditor.o    -fstack-protector -L../../../binaries/system -L/usr/local/lib -Wl,--no-undefined -Wl,--as-needed -Wl,-z,relro -Wl,-rpath,/usr/local/lib/0ad  ../../../binaries/system/libAtlasObject.a ../../../binaries/system/libAtlasUI.so
     14}}}
    1315
    14 I need to check, I'm almost sure that the final "../../../binaries/system/libAtlasUI.so" should be "-lAtlasUI.so", so that the rpath option would apply its magic.
     16
     17I need to check, I'm almost sure that the final
     18{{{
     19../../../binaries/system/libAtlasUI.so
     20}}}
     21
     22should be
     23
     24{{{
     25-lAtlasUI.so
     26}}}
     27
     28so that the rpath option would apply its magic.
    1529
    1630I am trying to understand how to coerce the build system in doing things this way and test this theory. I'm open to suggestions.