"unresolved external symbol __alloca_prob e_16"

Hello,

I am using Microsoft VS (2003) C++ on a new computer (Intel Xeon). Now, any SDL
apllication fails to link, even a very basic code like this:=============
#include <sdl.h>

#pragma comment(lib, “SDL.lib”)
#pragma comment(lib, “SDLmain.lib”)

int
main(int argc, char *argv[])
{
return 0;
}

I alway get: “unresolved external symbol __alloca_probe_16”

With an older computer, I never obsearved this problem. Any suggestions?!

Thanks,
Andreas

Check to see that all your settings are the same as they were on your old
computer, that you’ve got all the
libs installed, in the same place, and that the IDE can find them at the right
path, etc.

Well, I did double-check everything, and everything but SDL works fine (but I
don’t have my old machine anymore, so I cannot compare each and every setting
step by step). Have you any suggestions, how I could find out which library
migth be missing.

Best regards,
Andreas