CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 1 of 1
  1. #1
    Join Date
    Dec 2010
    Posts
    907

    Compiling SDL_Sound with Visual C++ 2010

    Code:
    /OUT:"win32bin/sdl_sound_d.dll" /INCREMENTAL /NOLOGO /DLL "odbc32.lib" "odbccp32.lib" 
    "kernel32.lib" "user32.lib" "gdi32.lib" "winspool.lib" "comdlg32.lib" "advapi32.lib" "shell32.lib" 
    "ole32.lib" "oleaut32.lib" "uuid.lib" /NODEFAULTLIB /MANIFEST 
    /ManifestFile:".\sdl_sound_dll___Win32_Debug\sdl_sound_dll.dll.intermediate.manifest" 
    /ALLOWISOLATION /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /PDB:"E:\Jacky
    \Downloads\dosbox\sdl_sound_visualc_srcs\SDL_sound\visualc\sdl_sound_dll___Win32_Debug
    \sdl_sound_dll.pdb" /SUBSYSTEM:CONSOLE /PGD:"E:\Jacky\Downloads\dosbox
    \sdl_sound_visualc_srcs\SDL_sound\visualc\sdl_sound_dll___Win32_Debug\sdl_sound_dll.pgd" 
    /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"win32lib/sdl_sound_d.lib" /MACHINE:X86 
    /ERRORREPORT:QUEUE
    Code:
    Error	3	error LNK1104: cannot open file 'LIBC.lib'	E:\Jacky\Downloads\dosbox
    \sdl_sound_visualc_srcs\SDL_sound\visualc\LINK	sdl_sound_dll
    I've just got one error. I tried to ignore default libraries, but I would get these
    Code:
    Error	3	error LNK2019: unresolved external symbol _strcat referenced in function _open_file	E:\Jacky\Downloads\dosbox\sdl_sound_visualc_srcs\SDL_sound\visualc\common.obj	sdl_sound_dll
    Error	4	error LNK2001: unresolved external symbol _strcat	E:\Jacky\Downloads\dosbox\sdl_sound_visualc_srcs\SDL_sound\visualc\instrum.obj	sdl_sound_dll
    Error	5	error LNK2001: unresolved external symbol _strcat	E:\Jacky\Downloads\dosbox\sdl_sound_visualc_srcs\SDL_sound\visualc\mloader.obj	sdl_sound_dll
    Error	6	error LNK2019: unresolved external symbol _strcpy referenced in function _open_file	E:\Jacky\Downloads\dosbox\sdl_sound_visualc_srcs\SDL_sound\visualc\common.obj	sdl_sound_dll
    Any help would be greatly appreciated!
    Thanks
    Jack
    Last edited by lucky6969b; September 22nd, 2013 at 05:49 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured