From 4cd6c927deb1dc0767b51d36a62bd008be3a6bb8 Mon Sep 17 00:00:00 2001 From: Dave Beazley Date: Fri, 2 Mar 2001 22:17:52 +0000 Subject: *** empty log message *** git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@1041 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Tools/WAD/Makefile | 2 +- Tools/WAD/Test/wpm.py | 2 +- Tools/WAD/Wad/Makefile | 16 ++++++++-------- Tools/WAD/Wad/stab.c | 3 +-- 4 files changed, 11 insertions(+), 12 deletions(-) (limited to 'Tools') diff --git a/Tools/WAD/Makefile b/Tools/WAD/Makefile index 765e141f3..b32dba8c1 100644 --- a/Tools/WAD/Makefile +++ b/Tools/WAD/Makefile @@ -13,7 +13,7 @@ PYINCLUDE = -I/usr/local/include/python2.0 TCLINCLUDE = -I/usr/local/include # Location of your Perl installation -PERLINCLUDE = -I/usr/lib/perl5/5.00503/i386-linux/CORE +PERLINCLUDE = -I/usr/perl5/5.00503/sun4-solaris/CORE all: wad python tcl perl diff --git a/Tools/WAD/Test/wpm.py b/Tools/WAD/Test/wpm.py index a8541953e..f849e3167 100644 --- a/Tools/WAD/Test/wpm.py +++ b/Tools/WAD/Test/wpm.py @@ -24,7 +24,7 @@ import linecache print "**************************************************" -print "* WAD Post-Mortem Debugger *" +print "* WAD Debugger *" print "**************************************************" # Save a local copy of the last exception and value objects from sys diff --git a/Tools/WAD/Wad/Makefile b/Tools/WAD/Wad/Makefile index 7557cf5b9..b6077600c 100644 --- a/Tools/WAD/Wad/Makefile +++ b/Tools/WAD/Wad/Makefile @@ -10,7 +10,7 @@ WADSRCS = string.c vars.c io.c memory.c return.c default.c stack.c stab.c elf.c object.c init.c segment.c signal.c WADOBJS = string.o vars.o io.o memory.o return.o default.o stack.o stab.o elf.o object.o signal.o segment.o init.o INCLUDE = -I../Include -I. $(SINCLUDE) -WADOPT = -DWAD_LINUX +WADOPT = -DWAD_SOLARIS # Location of your Python installation PYINCLUDE = -I/usr/local/include/python2.0 @@ -23,21 +23,21 @@ TCLSRCS = wadtcl.cxx TCLOBJS = wadtcl.o # Location of your Perl installation -PERLINCLUDE = -I/usr/lib/perl5/5.00503/i386-linux/CORE +PERLINCLUDE = -I/usr/perl5/5.00503/sun4-solaris/CORE PERLSRCS = wadpl.cxx PERLOBJS = wadpl.o # C Compiler -CC = gcc -CFLAGS = #-fpic +CC = cc +CFLAGS = # # C++ Compiler -CXX = c++ -CXXFLAGS = #-fpic +CXX = CC +CXXFLAGS = #-Kpic # Linking options CLINK = -CXXLINK = g++ -shared +CXXLINK = CC -G # AR AR = ar @@ -81,7 +81,7 @@ wc:: wc $(SRCS) semi:: - egrep ";" $(SRCS) wadpy.cxx | wc + egrep ";" $(WADSRCS) plat/*.c | wc clean:: diff --git a/Tools/WAD/Wad/stab.c b/Tools/WAD/Wad/stab.c index 4de27f554..e79178c12 100644 --- a/Tools/WAD/Wad/stab.c +++ b/Tools/WAD/Wad/stab.c @@ -584,12 +584,11 @@ wad_search_stab(void *sp, int size, char *stabstr, WadFrame *f) { objfile[0] = 0; for (i = 0; i < ns; i++, s++) { - /* if (wad_debug_mode & DEBUG_STABS) { + if (wad_debug_mode & DEBUG_STABS) { wad_printf(" %10d %10x %10d %10d %10d: '%s'\n", s->n_strx, s->n_type, s->n_other, s->n_desc, s->n_value, stabstr+s->n_strx); } - */ if (s->n_type == N_LSYM) { stab_symbol(s,stabstr); continue; -- cgit v1.2.1