💾 Archived View for bbs.geminispace.org › s › Lagrange › 14645 captured on 2024-02-05 at 09:40:58. Gemini links have been rewritten to link to archived content

View Raw

More Information

➡️ Next capture (2024-03-21)

-=-=-=-=-=-=-

I'm getting the following error:

[100%] Linking C executable lagrange

/usr/bin/ld: lib/harfbuzz/libharfbuzz.a(harfbuzz.cc.o): relocation R_X86_64_32S against `.data' can not be used when making a PIE object; recompile with -fPIE

collect2: error: ld returned 1 exit status

make[2]: *** [CMakeFiles/app.dir/build.make:1021: lagrange] Error 1

make[1]: *** [CMakeFiles/Makefile2:120: CMakeFiles/app.dir/all] Error 2

make: *** [Makefile:130: all] Error 2

What do I do?

Posted in: s/Lagrange

🚀 zorg

Feb 04 · 2 days ago

1 Comment

🎵 xavi · 3 hours ago:

This is an usual error message when C compilers are mixed. For example, some object files are built with gcc, whereas others are built with clang, or viceversa.

Could you please make sure that the same C compiler was used to build all objects?