Changes between Version 8 and Version 9 of WebKitGTK/SpeedUpBuild


Ignore:
Timestamp:
Jan 2, 2014, 5:08:27 AM (11 years ago)
Author:
Manuel Rego Casasnovas
Comment:

Add information about how to configure ld.gold with update-alternatives

Legend:

Unmodified
Added
Removed
Modified
  • WebKitGTK/SpeedUpBuild

    v8 v9  
    2929lrwxrwxrwx 1 root root 7 Sep 25  2012 /usr/bin/ld -> ld.gold
    3030}}}
     31
     32Or you can configure `update-alternatives`:
     33{{{
     34#!sh
     35$ update-alternatives --install "/usr/bin/ld" "ld" "/usr/bin/ld.gold" 20
     36$ update-alternatives --install "/usr/bin/ld" "ld" "/usr/bin/ld.bfd" 10
     37}}}
     38
     39Then choose the preferred one with the following command:
     40{{{
     41#!sh
     42$ update-alternatives --config ld
     43}}}
     44
     45'''Be aware''' that ''colorgcc'' might cause linking issues when using ld.gold.
    3146
    3247== ccache ==