Statically linking against LAPACK

后端 未结 1 565
轻奢々
轻奢々 2020-12-11 20:21

I\'m attempting to do a release of some software and am currently working through a script for the build process. I\'m stuck on something I never thought I would be, statica

相关标签:
1条回答
  • 2020-12-11 20:43

    Your linking order is wrong. Link libraries after the code that requires them, not before. Like this:

    gcc -o eigen eigen.c -llapack 
    gcc -static -o eigen eigen.c -llapack
    

    That should resolve the linkage problems.


    To answer the subsequent question why this works, the GNU ld documentation say this:

    It makes a difference where in the command you write this option; the linker searches and processes libraries and object files in the order they are specified. Thus, foo.o -lz bar.o' searches libraryz' after file foo.o but before bar.o. If bar.o refers to functions in `z', those functions may not be loaded.

    ........

    Normally the files found this way are library files—archive files whose members are object files. The linker handles an archive file by scanning through it for members which define symbols that have so far been referenced but not defined. But if the file that is found is an ordinary object file, it is linked in the usual fashion.

    ie. the linker is going to make one pass through a file looking for unresolved symbols, and it follows files in the order you provide them (ie. "left to right"). If you have not yet specified a dependency when a file is read, the linker will not be able to satisfy the dependency. Every object in the link list is parsed only once.

    Note also that GNU ld can do reordering in cases where circular dependencies are detected when linking shared libraries or object files. But static libraries are only parsed for unknown symbols once.

    0 讨论(0)
提交回复
热议问题