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

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Wurstinator

Pages: [1] 2 3
1
DotNet / Re: DLL issues again
« on: July 06, 2014, 09:25:16 pm »
Yes, I have done that.

2
DotNet / Re: DLL issues again
« on: July 05, 2014, 09:27:23 pm »
It exists in /usr/local/lib, yes. It is a link but the real file does exist there as well. I also tried to load the real file (.so.2.1) directly instead of the link, there was no difference.

3
DotNet / DLL issues again
« on: July 01, 2014, 09:50:17 pm »
Hi,
apparently many people had this issue but all the help Google could provide me with did not solve it for me:
I get a System.DllNotFoundException for libcsfml-graphics.so.2 when trying to create a RenderWindow for example.
I have the Assembly References set up correctly and the CSFML files are located in my /usr/ directory. I set up the file sfmlnet-graphics-2.dll.config like so:
<configuration>
   <dllmap dll="csfml-graphics-2" target="libcsfml-graphics.so.2" os="linux"/>
</configuration>

I have not found any more advice for this problem since apparently it worked for everyone else like this.

4
General / Re: Tutorial Segmentation Fault
« on: September 02, 2013, 01:20:53 pm »
Well, that's a bummer. Guess I have to get it running on Windows now.

Thanks for the answer anyway.

5
General / Tutorial Segmentation Fault
« on: September 01, 2013, 11:00:27 pm »
Hi,
I compiled the tutorial code (http://www.sfml-dev.org/tutorials/2.1/start-linux.php) on my virtual Ubuntu 12.04 32-bit machine.
However, the first line
sf::RenderWindow window(sf::VideoMode(200, 200), "SFML works!");
causes a Segmentation Fault and the process terminates.

I am using the 32-bit version for Linux of SFML 2.1.

#include <SFML/Graphics.hpp>

int main()
{
    sf::RenderWindow window(sf::VideoMode(200, 200), "SFML works!");
    sf::CircleShape shape(100.f);
    shape.setFillColor(sf::Color::Green);

    while (window.isOpen())
    {
        sf::Event event;
        while (window.pollEvent(event))
        {
            if (event.type == sf::Event::Closed)
                window.close();
        }

        window.clear();
        window.draw(shape);
        window.display();
    }

    return 0;
}

6
General / Installing SFML 2.0 for VS 2010
« on: November 10, 2011, 11:24:34 pm »
bump

7
General / Installing SFML 2.0 for VS 2010
« on: November 04, 2011, 03:37:05 am »
bump

8
General / Installing SFML 2.0 for VS 2010
« on: October 31, 2011, 11:05:57 pm »
Quote
I also compiled the examples and now wanted to try one so I copied libsnd and the 5 SFML-DLLs to it. Problem is, that it gives me a 0xc000007b error when I try to start the exe.


I am using the "pong" example.

9
General / Installing SFML 2.0 for VS 2010
« on: October 31, 2011, 02:00:19 am »
Sorry, but did you even read my starting post?

I skipped to the end of the video and it seems like the only thing it covers is how to build the library files of SFML. I already did that before starting this topic.

10
General / Installing SFML 2.0 for VS 2010
« on: October 29, 2011, 04:11:41 am »
bump

11
General / Installing SFML 2.0 for VS 2010
« on: October 21, 2011, 11:53:05 am »
bump

12
General / Installing SFML 2.0 for VS 2010
« on: October 07, 2011, 10:30:31 pm »
No, nothing.

13
General / Installing SFML 2.0 for VS 2010
« on: September 29, 2011, 05:28:51 pm »
I am able to execute it now but the window instantly closes. Is this another ATI bug? :(

14
General / Installing SFML 2.0 for VS 2010
« on: September 28, 2011, 10:53:19 pm »
Dependency Walker tells me:
Error: Modules with different CPU types were found.

libsndfile-1.dll and ieshims.dll are x86 while the others are x64. Is there a way to fix this?

15
General / Installing SFML 2.0 for VS 2010
« on: September 28, 2011, 06:14:42 pm »
Hi,
last time I tried installing SFML 2 I already gave up at CMake so I am proud that I got this far  :lol:
I "cmake"d it and used the MSVS-Solution file. Now I have a lib/MinSizeRel folder which includes 15 files.
I also compiled the examples and now wanted to try one so I copied libsnd and the 5 SFML-DLLs to it. Problem is, that it gives me a 0xc000007b error when I try to start the exe.
 :(

Pages: [1] 2 3