Referência indefinida ao símbolo, mesmo que a biblioteca esteja vinculada

Ao vincular um projeto em que estou trabalhando, o vinculador fornece os seguintes erros:

/usr/bin/ld: ../Includes and Libs/lib/libsfml21rca.a(SoundFile.o): undefined reference to symbol 'sf_read_short@@libsndfile.so.1.0'

/usr/bin/ld: note: 'sf_read_short@@libsndfile.so.1.0' is defined in DSO /usr/lib/gcc/i686-linux-gnu/4.6/../../../i386-linux-gnu/libsndfile.so so try adding it to the linker command line

/usr/lib/gcc/i686-linux-gnu/4.6/../../../i386-linux-gnu/libsndfile.so: could not read symbols: Invalid operation

O problema é que o libsndfile.so já está vinculado antes do libsfml21rca.a, então não tenho idéia de onde está o problema.

Estou usando Code :: Blocks 10.05

Obrigado pela ajuda antecipadamente

EDITAR:

Aqui está o comando de vinculação:

g ++ -L "Inclui e Libs / lib" -L "Inclui e Libs / lib / raknet3_731" -L "Inclui e Libs / lib / d3d_new / x86" -L "Inclui e Libs / lib / ogg" -L "Inclui e Libs / lib / sdl "-LBullet / lib -o (filename) ... (um monte de arquivos objeto) -lGLEW -lglfw -lGL -lGLU -lpthread -lopenal -ljpeg -lfreetype -lsndfile -lXrandr -lsfml-system -lsfml-window -lsfml-audio ../Bullet/lib/LinearMath.lib ../Bullet/lib/BulletCollision.lib ../Bullet/lib/BulletDynamics.lib "../Inclui e Libs / lib / raknet3_731 / RakNetLibStaticDebug.lib "" ../Inclui e libs / lib / libsfml21rca.a "../../../../../../home/msabol/Desktop/SFML/sfml2st/sfmlVideo/sfmlVideo/ bin / Release / libsfmlVideo.a ../../../../../../home/msabol/Desktop/SFML/sfmlVideo/bin/Release/libsfmlVideo.a

questionAnswers(1)

yourAnswerToTheQuestion