Over the last few days I have spent countless hours on debugging dynamic linking errors I didn’t think was possible to have. Dynamic linking (very simplified) means that a program will request that the operating system loads a pre-compiled library into memory at runtime; and makes sure that the program gets all the information it […]
Linking errors: accidental compiler update
Over the last few days I have spent countless hours on debugging dynamic linking errors I didn’t think was possible to have. Dynamic linking (very simplified) means that a program will request that the operating system loads a pre-compiled library into memory at runtime; and makes sure that the program gets all the information it needs to access this. At least in theory…