|
From: SourceForge.net <no...@so...> - 2005-01-29 21:22:58
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=2966859 By: danielosmari Put the .o files BEFORE the libraries. The order IS important. When GCC needs a symbol, it'll search for it in the next objects/libs passed as arguments. In the way you are doing, it's skipping the SDL/OpenGL symbols because they weren't needed; only at the end GCC realizes it needs those symbols for the .o. ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=7134 |