diff options
author | tma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2005-11-01 16:05:06 +0000 |
---|---|---|
committer | tma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2005-11-01 16:05:06 +0000 |
commit | 24b3361cea084b9038c0f67bf423cd429877fd85 (patch) | |
tree | 1af4ef7b8465dd6bff137a5bbe2dd82328b3f17d /code/tools | |
parent | 394cead89ea339273451bb5d5f2369a9a4dbc908 (diff) | |
download | ioquake3-aero-24b3361cea084b9038c0f67bf423cd429877fd85.tar.gz ioquake3-aero-24b3361cea084b9038c0f67bf423cd429877fd85.zip |
* More Solaris work
git-svn-id: svn://svn.icculus.org/quake3/trunk@205 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/tools')
-rw-r--r-- | code/tools/lcc/etc/gcc-solaris.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/code/tools/lcc/etc/gcc-solaris.c b/code/tools/lcc/etc/gcc-solaris.c index f0e20e9..d7effde 100644 --- a/code/tools/lcc/etc/gcc-solaris.c +++ b/code/tools/lcc/etc/gcc-solaris.c @@ -1,4 +1,4 @@ -/* x86s running Linux */ +/* Solaris with GNU Compilers */ #include <string.h> @@ -25,7 +25,7 @@ char inputs[256] = ""; // TTimo experimental: do not compile with the __linux__ define, we are doing bytecode! char *cpp[] = { LCCDIR "q3cpp" BINEXT, "-U__GNUC__", "-D_POSIX_SOURCE", "-D__STDC__=1", "-D__STRICT_ANSI__", - "-Dunix", "-Di386", "-Dlinux", + "-Dunix", "-Di386", "-Dsun", "-D__unix__", "-D__i386__", "-D__signed__=signed", "$1", "$2", "$3", 0 }; char *include[] = {"-I" LCCDIR "include", "-I" LCCDIR "gcc/include", "-I/usr/include", |