Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
33 views

I've got a problem with a static library (.a file) I'd like to include into my project: Compilation (with gcc) works well, but linking ends with the library not being found by ld whatever I do: arm-...
Neppomuk's user avatar
  • 1,222
0 votes
0 answers
40 views

I've been working on a C++ project. I have been using 2 Windows PCs for building it and both worked fine with the same (kinda janky) setup. I recently got a new computer and I get a linker error. My ...
indjev99's user avatar
  • 122
1 vote
1 answer
38 views

I have a pre-built image of a shared library, and that library implements main() with something like: int main(...) { bootstrap(...); return 0; } bootstrap(...) { /*...*/ sc_main(...);...
sh1's user avatar
  • 5,010