开发者

Linking SDL_image errors

开发者 https://www.devze.com 2023-03-01 00:21 出处:网络
I am running into problems when linking SDL_image in gcc 3 on cygwin under Windows 7. I receive the following error:

I am running into problems when linking SDL_image in gcc 3 on cygwin under Windows 7.

I receive the following error:

/usr/lib/gcc/i686-pc-cygwin/4.3.4/../../../../i686-pc-cygwin/bin/ld: cannot find -lSDL_image

My makefile appears as this:

all: rabbit

rabbit: main.o rabbit.o renderer.o
        g++ -o rabbit main.o rabbit.o renderer.o -lSDLmain -lSDL -lSDL_image 

main.o: main.cpp rabbit.h 
        g++ -c main.cpp 

rabbit.o: rabbit.cpp rabbit.h gameobject.h
        g++ -c rabbit.cpp

renderer.o: renderer.cpp renderer.h
        g++ -c renderer.cpp 

clean:
        rm -rf *o rabbit

I store SDL_image.dll, SDL_image.lib, jpeg.dll, libpng12-0.开发者_如何学JAVAdll, libtiff-3.dll, and zlib1.dll in the directory with my executable. SDL_image.h is also in the correct location.

Please help, this has been at fault for a few days now!


SDL_image is not part of the core SDL distribution. It must be installed separately.

Check if you have /usr/local/lib/libSDL_image.a or the shared library installed.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号