]> git.sur5r.net Git - cc65/commit
Improve MinGW support.
authorOliver Schmidt <ol.sc@web.de>
Mon, 3 Mar 2014 21:12:14 +0000 (22:12 +0100)
committerOliver Schmidt <ol.sc@web.de>
Mon, 3 Mar 2014 21:12:14 +0000 (22:12 +0100)
commit50c4fd1c4ce740c8e9ae1e416dc7daa3dbdb5e82
treec565fde4a802a6d116b8907ed8e6ab5b6d123364
parentfcc95f4c1c42c98fedcd643c4174594deaf08e6e
Improve MinGW support.

- Code specific to Windows was #ifdef'ed with _MSC_VER so it wasn't included with MinGW. So _MSC_VER is replaced with _WIN32.
- MinGW doesn't support _get_pgmptr() so it is necessary to directly call the Win32 function GetModuleFileName(). This implies including windows.h which in turn causes a name clash with the Win32 function SearchPath(). So the cc65 type SearchPath is renamed to SearchPaths.
15 files changed:
src/ca65/incpath.c
src/ca65/incpath.h
src/cc65/incpath.c
src/cc65/incpath.h
src/cl65/main.c
src/common/filestat.c
src/common/filestat.h
src/common/filetime.c
src/common/filetime.h
src/common/searchpath.c
src/common/searchpath.h
src/common/xsprintf.h
src/ld65/filepath.c
src/ld65/filepath.h
src/sim65/paravirt.c