Welcome, Guest. Please login or register. Did you miss your activation email?

Author Topic: Linking errors?  (Read 1062 times)

0 Members and 1 Guest are viewing this topic.

sknnywhiteman

  • Newbie
  • *
  • Posts: 38
    • View Profile
    • Email
Linking errors?
« on: May 28, 2012, 01:15:10 am »
I'm like 95% sure this is a problem on my part, not SFML, but I'm using MinGW with Code::Blocks on SFML RC, and every single time I compile, I get these warnings:

||warning: auto-importing has been activated without --enable-auto-import specified on the command line.|
||Info: resolving vtable for sf::Text by linking to __imp___ZTVN2sf4TextE |
||Info: resolving vtable for sf::VertexArray by linking to __imp___ZTVN2sf11VertexArrayE |
||Info: resolving sf::RenderStates::Default      by linking to __imp___ZN2sf12RenderStates7DefaultE |
||=== Build finished: 0 errors, 1 warnings ===|

Because they're only warnings, I'm able to continue as I was, but this started happening after updating to the Release Candidate.. Am I not linking right? I followed the installation guide on the Tutorials, but maybe I missed something..

Laurent

  • Administrator
  • Hero Member
  • *****
  • Posts: 32504
    • View Profile
    • SFML's website
    • Email
Re: Linking errors?
« Reply #1 on: May 28, 2012, 10:17:44 am »
Make sure that don't define SFML_STATIC in your preprocessor options.
Laurent Gomila - SFML developer

sknnywhiteman

  • Newbie
  • *
  • Posts: 38
    • View Profile
    • Email
Re: Linking errors?
« Reply #2 on: May 28, 2012, 06:02:27 pm »
 ;D Works perfect! Thanks. :)

 

anything