Linking SDL_image errors

吃可爱长大的小学妹 提交于 2020-01-06 15:58:24

问题


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.dll, 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!


回答1:


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.



来源:https://stackoverflow.com/questions/5812628/linking-sdl-image-errors

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!