Question |
Why does my Linux application run so much slower than my windows application? |
Answer |
Linux performs fixups of external functions at runtime instead of at load time. This creates noticeable performance loss. To work around this, use static linking of your exe's. You might also notice a significant performance improvement if you run your application without debugging turned on, or outside the IDE. |
Last Modified: 13-NOV-01