aboutsummaryrefslogtreecommitdiffstats
path: root/code/tools/lcc/src/bind.c
diff options
context:
space:
mode:
authortma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2005-11-02 16:05:14 +0000
committertma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2005-11-02 16:05:14 +0000
commit2e5b78c0a36480e3735692cd2795dee291936fe8 (patch)
tree0dad62aefa78bb418723d298e6d4181e2bb61a37 /code/tools/lcc/src/bind.c
parent74f0ff6259b3cfa4862ea45a9e70db5acf3ab347 (diff)
downloadioquake3-aero-2e5b78c0a36480e3735692cd2795dee291936fe8.tar.gz
ioquake3-aero-2e5b78c0a36480e3735692cd2795dee291936fe8.zip
* Removed the last of the binary target stuff from lcc (hopefully)
git-svn-id: svn://svn.icculus.org/quake3/trunk@228 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/tools/lcc/src/bind.c')
-rw-r--r--code/tools/lcc/src/bind.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/code/tools/lcc/src/bind.c b/code/tools/lcc/src/bind.c
index c27036f..bc7b983 100644
--- a/code/tools/lcc/src/bind.c
+++ b/code/tools/lcc/src/bind.c
@@ -1,22 +1,7 @@
#include "c.h"
-extern Interface alphaIR;
-extern Interface mipsebIR, mipselIR;
-extern Interface sparcIR, solarisIR;
-extern Interface x86IR, x86linuxIR;
-extern Interface symbolicIR, symbolic64IR;
extern Interface nullIR;
extern Interface bytecodeIR;
Binding bindings[] = {
- /*{ "alpha/osf", &alphaIR },*/
- /*{ "mips/irix", &mipsebIR },*/
- /*{ "mips/ultrix", &mipselIR },*/
- /*{ "sparc/sun", &sparcIR },*/
- /*{ "sparc/solaris", &solarisIR },*/
- /*{ "x86/win32", &x86IR },*/
- /*{ "x86/linux", &x86linuxIR },*/
- { "symbolic/osf", &symbolic64IR },
- { "symbolic/irix", &symbolicIR },
- { "symbolic", &symbolicIR },
{ "null", &nullIR },
{ "bytecode", &bytecodeIR },
{ NULL, NULL },