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

Author Topic: Where can I find a list of sfml2.0 dependencies?  (Read 2827 times)

0 Members and 1 Guest are viewing this topic.

dydya-stepa

  • Jr. Member
  • **
  • Posts: 82
    • View Profile
Where can I find a list of sfml2.0 dependencies?
« on: August 03, 2011, 06:50:19 pm »
I want to build everything by myself. Can you provide me a list of dependencies?

dydya-stepa

  • Jr. Member
  • **
  • Posts: 82
    • View Profile
Where can I find a list of sfml2.0 dependencies?
« Reply #1 on: August 03, 2011, 06:52:31 pm »
for windows I mean

Laurent

  • Administrator
  • Hero Member
  • *****
  • Posts: 32498
    • View Profile
    • SFML's website
    • Email
Where can I find a list of sfml2.0 dependencies?
« Reply #2 on: August 03, 2011, 06:54:20 pm »
Everything which is in the "extlibs" directory is an external dependency.
Laurent Gomila - SFML developer

dydya-stepa

  • Jr. Member
  • **
  • Posts: 82
    • View Profile
Where can I find a list of sfml2.0 dependencies?
« Reply #3 on: August 03, 2011, 07:39:39 pm »
so i can just download those libraries and rebuild them myself? i wonder if you maybe build those libs in somewhat different way.

Laurent

  • Administrator
  • Hero Member
  • *****
  • Posts: 32498
    • View Profile
    • SFML's website
    • Email
Where can I find a list of sfml2.0 dependencies?
« Reply #4 on: August 03, 2011, 07:54:44 pm »
Some of them are a PITA to build on Windows, so I wrote CMake makefiles for all of them.

But why do you want to recompile them?
Laurent Gomila - SFML developer

dydya-stepa

  • Jr. Member
  • **
  • Posts: 82
    • View Profile
Where can I find a list of sfml2.0 dependencies?
« Reply #5 on: August 04, 2011, 10:35:27 am »
it seems to me that damn VS2010 has replaced their c++ libs with some multi-threaded crap which is no longer 100% compatible with older built static libraries and i get lots of warnings about that compatibility issues. the best idea is to just recompile with new libraries. I think it'll be faster to do rather then trying to fix that and hopefully more stable then.

Laurent

  • Administrator
  • Hero Member
  • *****
  • Posts: 32498
    • View Profile
    • SFML's website
    • Email
Where can I find a list of sfml2.0 dependencies?
« Reply #6 on: August 04, 2011, 11:27:12 am »
Hum, apparently many VC++ 2010 users compile and use SFML 2 without these problems.
Laurent Gomila - SFML developer

dydya-stepa

  • Jr. Member
  • **
  • Posts: 82
    • View Profile
Where can I find a list of sfml2.0 dependencies?
« Reply #7 on: August 04, 2011, 11:49:03 am »
how many of them shipped something to public?  :)

the warning may appear later in cycle. besides i'd like to build a solid file with everithing built as static libs. otherwise it's possible to end up having to provision several c++ runtimes on a target machine or mixing multithreaded new stuff with old singlethreaded.

Laurent

  • Administrator
  • Hero Member
  • *****
  • Posts: 32498
    • View Profile
    • SFML's website
    • Email
Where can I find a list of sfml2.0 dependencies?
« Reply #8 on: August 04, 2011, 11:56:51 am »
The external libs are compiled so that they link to the static C runtime -- but it probably doesn't matter, since they are static libraries they don't link to anything anyway. Linking is done later, when compiling a binary that uses these static libs.

Anyway, if you end up with something that may be useful to other VC++ users, let me know ;)
Laurent Gomila - SFML developer

 

anything