User loginNavigationWho's online
There are currently 0 users and 0 guests online.
|
Diablo complains about missing object files (e.g. /tmp/ccNN6Z96.o). How do I fix this?To run correctly, Diablo needs ALL the original object files and libraries the linker used to piece the executable together. There are several reasons for this, the most important being that we need the relocation information that is only present in the relocatable object files to safely transform the binary. You can save the object files by building the executable in two steps:
Alternatively, you could compile with the -save-temps option added to gcc,
|