CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums

Error Compiling OpenFOAM .. Linker Error ld "--add-needed is not supported"

Register Blogs Community New Posts Updated Threads Search

In this blog, quick reference notes about OpenFOAM are posted in a form of a summary to address a specific topic per post.
Rate this Entry

Error Compiling OpenFOAM .. Linker Error ld "--add-needed is not supported"

Posted October 21, 2013 at 15:44 by Hisham

If an error occurs while compiling OpenFOAM from source that has to do with the "linker" ld does not support the --add-nedded option (Read more at: http://www.openfoam.org/mantisbt/view.php?id=685 and http://www.cfd-online.com/Forums/ope...roblem-ld.html).

The problem summary:

The 'nixOS has two linker programs ld.bfd and ld.gold. They both are situated in /usr/bin/. The /usr/bin/ld is a link to either. If this link is set to ld.gold the error occurs because the gold version does not support the --add-needed.

To know which linker your system is using:
Code:
ls -l /usr/bin/ld*
if you have:
Code:
$ ls -l /usr/bin/ld*
lrwxrwxrwx 1 root root      15 Oct 21 21:27 /usr/bin/ld -> /usr/bin/ld.gold
Then you need to (type carefully!):

Code:
$ sudo rm /usr/bin/ld
$ sudo ln -s /usr/bin/ld.bfd /usr/bin/ld
Then compile OF
Posted in Uncategorized
Views 3409 Comments 0 Edit Tags Email Blog Entry
« Prev     Main     Next »
Total Comments 0

Comments

 

All times are GMT -4. The time now is 15:12.