| Summary: | SDL_image 2.0 fails to build from source on Mac OS X 10.9 | ||
|---|---|---|---|
| Product: | SDL_image | Reporter: | maserfish |
| Component: | misc | Assignee: | Sam Lantinga <slouken> |
| Status: | RESOLVED INVALID | QA Contact: | Sam Lantinga <slouken> |
| Severity: | normal | ||
| Priority: | P2 | ||
| Version: | unspecified | ||
| Hardware: | x86_64 | ||
| OS: | Mac OS X (All) | ||
|
Description
maserfish
2013-11-03 22:52:16 UTC
It looks like there's something wrong with your SDL 2.0 install. Does this file have the missing symboles? /usr/local/Attic/SDL/2.0/lib/libSDL2.dylib The problem was that I had a previous install in /usr/local/Attic, but I had forgotten to delete one of my symlinks to it in /usr/local/lib. perigee:/usr/local/lib$ ls -l | grep SDL libSDL2-2.0.0.dylib -> ../Cellar/sdl2/2.0.0/lib/libSDL2-2.0.0.dylib libSDL2.a -> ../Cellar/sdl2/2.0.0/lib/libSDL2.a libSDL2.dylib -> ../Cellar/sdl2/2.0.0/lib/libSDL2.dylib libSDL2.la -> ../Attic/SDL/2.0/lib/libSDL2.la libSDL2_test.a -> ../Cellar/sdl2/2.0.0/lib/libSDL2_test.a libSDL2main.a -> ../Cellar/sdl2/2.0.0/lib/libSDL2main.a I deleted the symlink that pointed to the Attic version, and since there was no corresponding .la file in the Cellar install, I was done. After that I tried installing again with: brew install sdl2_image and everything worked as expected. |