Windows 7 の cygwin で gcc 3 の SDL_image をリンクすると問題が発生します。
次のエラーが表示されます。
/usr/lib/gcc/i686-pc-cygwin/4.3.4/../../../../i686-pc-cygwin/bin/ld: cannot find -lSDL_image
私のメイクファイルは次のように表示されます。
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
SDL_image.dll、SDL_image.lib、jpeg.dll、libpng12-0.dll、libtiff-3.dll、および zlib1.dll を実行可能ファイルのあるディレクトリに保存します。SDL_image.h も正しい場所にあります。
助けてください、これは数日前から問題がありました!