mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-02 06:03:50 +00:00
- Update to 1.2.0 RC4
PR: ports/92042 Submitted by: RuanWei <iamayan@gmail.com> (maintainer)
This commit is contained in:
parent
09a878a5a2
commit
821642e85d
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=154423
@ -6,38 +6,24 @@
|
||||
#
|
||||
|
||||
PORTNAME= skyeye
|
||||
PORTVERSION= 0.9.5
|
||||
PORTREVISION= 1
|
||||
DISTVERSION= 1.2.0-RC4
|
||||
CATEGORIES= emulators
|
||||
MASTER_SITES= http://download.gro.clinux.org/skyeye/
|
||||
|
||||
MAINTAINER= iamayan@gmail.com
|
||||
COMMENT= An environment simulates typical ARM-base embedded computer systems
|
||||
|
||||
BUILD_DEPENDS= tclsh8.3:${PORTSDIR}/lang/tcl83
|
||||
BUILD_DEPENDS= ${LOCALBASE}/lib/libiberty.a:${PORTSDIR}/devel/gnulibiberty \
|
||||
${LOCALBASE}/lib/libbfd.a:${PORTSDIR}/devel/libbfd
|
||||
RUN_DEPENDS= ${LOCALBASE}/lib/libiberty.a:${PORTSDIR}/devel/gnulibiberty \
|
||||
${LOCALBASE}/lib/libbfd.a:${PORTSDIR}/devel/libbfd
|
||||
|
||||
USE_GMAKE= yes
|
||||
GNU_CONFIGURE= yes
|
||||
USE_BZIP2= yes
|
||||
USE_GNOME= gtk20
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}-1.2.0
|
||||
|
||||
WRKSRC= ${WRKDIR}/skyeye
|
||||
do-install:
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/binary/skyeye ${PREFIX}/bin
|
||||
|
||||
MAN1= arm-elf-gdb.1 arm-elf-run.1
|
||||
INFO= mmalloc
|
||||
|
||||
ONLY_FOR_ARCHS= i386
|
||||
|
||||
SKYEYETARGET?= arm-elf
|
||||
CONFIGURE_TARGET= --target=${SKYEYETARGET}
|
||||
CONFIGURE_ARGS+= --without-gtk-prefix \
|
||||
--without-gtk-exec-prefix \
|
||||
--disable-gtktest
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${OSVERSION} < 500000
|
||||
BROKEN= "does not compile"
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,3 +1,4 @@
|
||||
MD5 (skyeye-0.9.5.tar.bz2) = 3976381bcb83bb0fe4c57175c2e3b602
|
||||
SHA256 (skyeye-0.9.5.tar.bz2) = 12dab29eb09fd2193488ce0f86177b6ae2aa79eeaa6f87e3dee34b78183c486e
|
||||
MD5 (skyeye-1.2.0-RC4.tar.bz2) = 753ce8a85ff981a4a6718ddf57192275
|
||||
SHA256 (skyeye-1.2.0-RC4.tar.bz2) = 85fe73c12cd0eb7129a837a72486bf0d4791919861d34294da2081ca647d926f
|
||||
SIZE (skyeye-1.2.0-RC4.tar.bz2) = 347420
|
||||
SIZE (skyeye-0.9.5.tar.bz2) = 18134145
|
||||
|
31
emulators/skyeye/files/patch-Makefile
Normal file
31
emulators/skyeye/files/patch-Makefile
Normal file
@ -0,0 +1,31 @@
|
||||
--- Makefile.orig Mon Dec 5 09:52:42 2005
|
||||
+++ Makefile Fri Jan 20 01:44:58 2006
|
||||
@@ -53,8 +53,8 @@
|
||||
ARCH_COLDFIRE_CFLAGS = -I arch/coldfire/common
|
||||
DEVICE_CFLAGS = -I device/ -I device/net -I device/lcd -I device/flash
|
||||
UTILS_CFLAGS = -I utils/share -I utils/main -I utils/config
|
||||
-SIM_EXTRA_CFLAGS = -DMODET $(ARCH_ARM_CFLAGS) $(ARCH_BLACKFIN_CFLAGS) $(ARCH_COLDFIRE_CFLAGS) $(DEVICE_CFLAGS) $(UTILS_CFLAGS)
|
||||
-SIM_EXTRA_LIBS = `pkg-config gtk+-2.0 --libs`
|
||||
+SIM_EXTRA_CFLAGS = -DMODET $(ARCH_ARM_CFLAGS) $(ARCH_BLACKFIN_CFLAGS) $(ARCH_COLDFIRE_CFLAGS) $(DEVICE_CFLAGS) $(UTILS_CFLAGS) `pkg-config gtk+-2.0 --cflags` -I${LOCALBASE}/include
|
||||
+SIM_EXTRA_LIBS = `pkg-config gtk+-2.0 --libs` -L${LOCALBASE}/lib
|
||||
#CFLAGS = -g -DSTANDALONE -DDEFAULT_INLINE=0 -DMODET $(SIM_EXTRA_CFLAGS) -I. -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/X11R6/include -I/usr/include/atk-1.0 -I/usr/include/pango-1.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include
|
||||
CFLAGS = -g -O2 -DSTANDALONE -DDEFAULT_INLINE=0 -DMODET $(SIM_EXTRA_CFLAGS) $(SUPPORT_ARCH_DEF) -I. -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/X11R6/include -I/usr/include/atk-1.0 -I/usr/include/pango-1.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include
|
||||
|
||||
@@ -157,7 +157,7 @@
|
||||
rm -f binary/*.o
|
||||
rm -f binary/*.a
|
||||
rm -f binary/skyeye
|
||||
- make -C arch/coldfire clean
|
||||
+ $(MAKE) -C arch/coldfire clean
|
||||
|
||||
distclean mostlyclean maintainer-clean realclean: clean
|
||||
rm -f TAGS tags
|
||||
@@ -189,7 +189,7 @@
|
||||
CF_COMMON_PATH = arch/coldfire/common/
|
||||
COLDFIRE_FLAG = -I arch/coldire/tracer
|
||||
binary/libcoldfire.a:$(SIM_CF_OBJS)
|
||||
- make -C arch/coldfire
|
||||
+ $(MAKE) -C arch/coldfire
|
||||
$(AR) $(AR_FLAGS) binary/libcoldfire.a $(SIM_CF_OBJS) $(CF_COMMON_PATH)/*.o $(CF_PATH)/tracer/tracer.o $(CF_PATH)/i_5206/i.o
|
||||
$(RANLIB) binary/libcoldfire.a
|
||||
|
@ -1,51 +0,0 @@
|
||||
--- Makefile.in.orig Tue Jul 19 22:33:06 2005
|
||||
+++ Makefile.in Tue Jul 19 22:36:07 2005
|
||||
@@ -668,7 +668,6 @@
|
||||
install-autoconf \
|
||||
install-automake \
|
||||
install-bash \
|
||||
- install-bfd \
|
||||
install-bzip2 \
|
||||
install-opcodes \
|
||||
install-binutils \
|
||||
@@ -693,9 +692,6 @@
|
||||
install-gzip \
|
||||
install-hello \
|
||||
install-indent \
|
||||
- install-intl \
|
||||
- install-tcl \
|
||||
- install-itcl \
|
||||
install-ld \
|
||||
install-libgui \
|
||||
install-libiberty \
|
||||
@@ -707,7 +703,6 @@
|
||||
install-perl \
|
||||
install-prms \
|
||||
install-rcs \
|
||||
- install-readline \
|
||||
install-recode \
|
||||
install-sed \
|
||||
install-send-pr \
|
||||
@@ -748,10 +743,7 @@
|
||||
INSTALL_X11_MODULES = \
|
||||
install-gdb \
|
||||
install-guile \
|
||||
- install-expect \
|
||||
- install-tclX \
|
||||
- install-tk \
|
||||
- install-tix
|
||||
+ install-expect
|
||||
|
||||
# This is a list of the targets for all of the modules which are compiled
|
||||
# using $(TARGET_FLAGS_TO_PASS).
|
||||
@@ -1755,8 +1747,8 @@
|
||||
all-target-libiberty: configure-target-libiberty
|
||||
all-target: $(ALL_TARGET_MODULES)
|
||||
install-target: $(INSTALL_TARGET_MODULES)
|
||||
-install-gdb: install-tcl install-tk install-itcl install-tix install-libgui
|
||||
-install-sid: install-tcl install-tk
|
||||
+install-gdb:
|
||||
+install-sid:
|
||||
### other supporting targets
|
||||
|
||||
MAKEDIRS= \
|
18
emulators/skyeye/files/patch-arch_coldfire_Makefile
Normal file
18
emulators/skyeye/files/patch-arch_coldfire_Makefile
Normal file
@ -0,0 +1,18 @@
|
||||
--- arch/coldfire/Makefile.orig Fri Jan 20 01:06:08 2006
|
||||
+++ arch/coldfire/Makefile Fri Jan 20 01:06:50 2006
|
||||
@@ -1,9 +1,9 @@
|
||||
all:
|
||||
- make -C i_5206/
|
||||
- make -C tracer/
|
||||
- make -C common/
|
||||
+ $(MAKE) -C i_5206/
|
||||
+ $(MAKE) -C tracer/
|
||||
+ $(MAKE) -C common/
|
||||
clean:
|
||||
- make -C tracer/ clean
|
||||
- make -C i_5206/ clean
|
||||
- make -C common/ clean
|
||||
+ $(MAKE) -C tracer/ clean
|
||||
+ $(MAKE) -C i_5206/ clean
|
||||
+ $(MAKE) -C common/ clean
|
||||
rm -f tags
|
@ -1,11 +0,0 @@
|
||||
--- etc/Makefile.in.orig Tue Jul 19 23:03:00 2005
|
||||
+++ etc/Makefile.in Tue Jul 19 23:03:14 2005
|
||||
@@ -52,7 +52,7 @@
|
||||
all:
|
||||
|
||||
# We want install to imply install-info as per GNU standards.
|
||||
-install: install-info
|
||||
+install:
|
||||
|
||||
uninstall:
|
||||
|
@ -1,10 +0,0 @@
|
||||
--- gdb/doc/Makefile.in.orig Tue Jul 19 22:38:16 2005
|
||||
+++ gdb/doc/Makefile.in Tue Jul 19 22:38:36 2005
|
||||
@@ -449,6 +449,6 @@
|
||||
maintainer-clean realclean: distclean
|
||||
rm -f GDBvn.texi *.info* *.dvi *.ps *.html *.pdf
|
||||
|
||||
-install: install-info
|
||||
+install:
|
||||
|
||||
uninstall: uninstall-info
|
@ -1,24 +0,0 @@
|
||||
--- sim/arm/armdefs.h.orig Wed May 11 22:10:09 2005
|
||||
+++ sim/arm/armdefs.h Sat Jul 16 18:25:48 2005
|
||||
@@ -22,6 +22,13 @@
|
||||
#include <stdlib.h>
|
||||
#include <errno.h>
|
||||
|
||||
+
|
||||
+#ifdef __FreeBSD__
|
||||
+#include <sys/select.h>
|
||||
+#define MAP_ANONYMOUS MAP_ANON
|
||||
+#endif
|
||||
+
|
||||
+
|
||||
//teawater add for arm2x86 2005.02.14-------------------------------------------
|
||||
#include <sys/mman.h>
|
||||
//AJ2D--------------------------------------------------------------------------
|
||||
@@ -63,6 +70,7 @@
|
||||
typedef unsigned char uint8_t;
|
||||
typedef unsigned short uint16_t;
|
||||
typedef unsigned int uint32_t;
|
||||
+typedef int int32_t;
|
||||
#if defined (__x86_64__)
|
||||
typedef unsigned long uint64_t;
|
||||
#else
|
@ -1,12 +0,0 @@
|
||||
--- sim/arm/configure.orig Wed Jul 20 13:40:44 2005
|
||||
+++ sim/arm/configure Wed Jul 20 13:42:23 2005
|
||||
@@ -3620,7 +3620,8 @@
|
||||
echo "$ac_t""no" 1>&6
|
||||
fi
|
||||
#2004-09-29 chy define GTK_CONFIG
|
||||
- GTK_CONFIG=/usr/bin/pkg-config
|
||||
+# GTK_CONFIG=/usr/bin/pkg-config
|
||||
+ GTK_CONFIG=/usr/local/bin/pkg-config
|
||||
min_gtk_version=1.1.3
|
||||
echo $ac_n "checking for GTK - version >= $min_gtk_version""... $ac_c" 1>&6
|
||||
echo "configure:3626: checking for GTK - version >= $min_gtk_version" >&5
|
@ -1,27 +0,0 @@
|
||||
--- sim/arm/skyeye-ne2k.c.orig Tue Mar 1 14:51:24 2005
|
||||
+++ sim/arm/skyeye-ne2k.c Sat Jul 16 18:17:14 2005
|
||||
@@ -26,13 +26,23 @@
|
||||
* 02/25/2003 initial version
|
||||
* yangye <yangye@163.net>
|
||||
*/
|
||||
-
|
||||
+#ifdef __linux__
|
||||
//#include <linux/if.h>
|
||||
#include <net/if.h>
|
||||
#include <linux/if_tun.h>
|
||||
//#include <sys/types.h>
|
||||
//#include <sys/stat.h>
|
||||
//#include <fcntl.h>
|
||||
+#endif
|
||||
+
|
||||
+#ifdef __FreeBSD__
|
||||
+#include <sys/types.h>
|
||||
+#include <sys/socket.h>
|
||||
+#include <net/if.h>
|
||||
+#include <net/if_tun.h>
|
||||
+#endif
|
||||
+
|
||||
+
|
||||
#include <sys/ioctl.h>
|
||||
#include <armdefs.h>
|
||||
#include <clps7110.h>
|
@ -1,68 +0,0 @@
|
||||
--- sim/arm/skyeye_net_tuntap.c.orig Tue Mar 1 14:51:24 2005
|
||||
+++ sim/arm/skyeye_net_tuntap.c Sat Jul 16 18:22:57 2005
|
||||
@@ -26,8 +26,19 @@
|
||||
* chenyu <chenyu@hpclab.cs.tsinghua.edu.cn>
|
||||
*/
|
||||
|
||||
+#ifdef __linux__
|
||||
#include <net/if.h>
|
||||
#include <linux/if_tun.h>
|
||||
+#endif
|
||||
+
|
||||
+#ifdef __FreeBSD__
|
||||
+#include <sys/socket.h>
|
||||
+#include <net/if.h>
|
||||
+#include <net/if_tun.h>
|
||||
+#include <fcntl.h>
|
||||
+#endif
|
||||
+
|
||||
+
|
||||
#include <sys/ioctl.h>
|
||||
#include "armdefs.h"
|
||||
|
||||
@@ -51,7 +62,7 @@
|
||||
DBG_PRINT("tapif_init begin\n");
|
||||
|
||||
firsttime++;
|
||||
-
|
||||
+#ifdef __linux__
|
||||
//tapif_fd = open("/dev/net/tun", O_RDWR);
|
||||
tapif_fd = open("/dev/net/tun", 2);
|
||||
DBG_PRINT("tapif_init: fd %d\n", tapif_fd);
|
||||
@@ -68,13 +79,36 @@
|
||||
exit(1);
|
||||
//return ;
|
||||
}
|
||||
+#endif
|
||||
|
||||
+#ifdef __FreeBSD__
|
||||
+ tapif_fd = open("/dev/tap", O_RDWR);
|
||||
+ DBG_PRINT("tapif_init: fd %d\n", tapif_fd);
|
||||
+ if(tapif_fd == -1) {
|
||||
+ perror("tapif_init:open");
|
||||
+ printf("-----------------------------------------------------------\n");
|
||||
+ printf("NOTICE: You should run as root if you require network\n");
|
||||
+ printf("NOTICE: load the kernel tap module with 'kldload if_tap'\n");
|
||||
+ printf("NOTICE: and execute 'cat /dev/tap'. there should be a \n");
|
||||
+ printf("NOTICE: device node under /dev/ (e.g. /dev/tap0).\n");
|
||||
+ printf("-----------------------------------------------------------\n");
|
||||
+ exit(1);
|
||||
+ }
|
||||
+#endif
|
||||
+
|
||||
+#if !defined(__FreeBSD__)&&!defined(__linux__)
|
||||
+ printf("NOTICE: No network support for your OS(yet). Bugging out!\n");
|
||||
+ exit(1);
|
||||
+#endif
|
||||
+
|
||||
+#ifndef __FreeBSD__
|
||||
memset(&ifr, 0, sizeof(ifr));
|
||||
ifr.ifr_flags = IFF_TAP|IFF_NO_PI;
|
||||
if (ioctl(tapif_fd, TUNSETIFF, (void *) &ifr) < 0) {
|
||||
perror("tapif_init: icotl TUNSETIFF error");
|
||||
exit(-1);
|
||||
}
|
||||
+#endif
|
||||
|
||||
if(firsttime==1){
|
||||
snprintf(buf, sizeof(buf), "ifconfig tap0 inet %d.%d.%d.%d",
|
@ -1,15 +0,0 @@
|
||||
--- sim/arm/skyeye_net_vnet.c.orig Tue Mar 1 14:51:24 2005
|
||||
+++ sim/arm/skyeye_net_vnet.c Sat Jul 16 18:23:34 2005
|
||||
@@ -26,6 +26,12 @@
|
||||
* chenyu <chenyu@hpclab.cs.tsinghua.edu.cn>
|
||||
*/
|
||||
#include <fcntl.h>
|
||||
+
|
||||
+#ifdef __FreeBSD__
|
||||
+#include <sys/socket.h>
|
||||
+#endif
|
||||
+
|
||||
+
|
||||
#include <net/if.h>
|
||||
//#include <linux/if_tun.h>
|
||||
#include <sys/ioctl.h>
|
@ -1,19 +0,0 @@
|
||||
*** tcl/unix/Makefile.in.orig Tue Jul 19 00:29:52 2005
|
||||
--- tcl/unix/Makefile.in Mon Jul 18 00:08:02 2005
|
||||
***************
|
||||
*** 194,200 ****
|
||||
# once we have created the initial executable, but in some cases you
|
||||
# may want to use a target without having made tclsh on these sources
|
||||
# (like for make genstubs)
|
||||
! TCL_EXE = tclsh
|
||||
|
||||
# The symbols below provide support for dynamic loading and shared
|
||||
# libraries. See configure.in for a description of what the
|
||||
--- 194,200 ----
|
||||
# once we have created the initial executable, but in some cases you
|
||||
# may want to use a target without having made tclsh on these sources
|
||||
# (like for make genstubs)
|
||||
! TCL_EXE = tclsh${VERSION}
|
||||
|
||||
# The symbols below provide support for dynamic loading and shared
|
||||
# libraries. See configure.in for a description of what the
|
@ -1,9 +0,0 @@
|
||||
--- usegtk-1.2.sh.orig Wed Jul 20 13:28:34 2005
|
||||
+++ usegtk-1.2.sh Wed Jul 20 13:29:18 2005
|
||||
@@ -1,5 +1,5 @@
|
||||
#! /bin/sh
|
||||
cp gdb/Makefile.in.gtk-1.2 gdb/Makefile.in
|
||||
cp sim/arm/Makefile.in.gtk-1.2 sim/arm/Makefile.in
|
||||
-cp sim/arm/configure.gtk-1.2 sim/arm/configure
|
||||
+cp sim/arm/configure.gtk1.2 sim/arm/configure
|
||||
|
@ -1,9 +0,0 @@
|
||||
--- usegtk-2.0.sh.orig Wed Jul 20 13:28:03 2005
|
||||
+++ usegtk-2.0.sh Wed Jul 20 13:25:21 2005
|
||||
@@ -1,5 +1,5 @@
|
||||
#! /bin/sh
|
||||
cp gdb/Makefile.in.gtk-2.0 gdb/Makefile.in
|
||||
cp sim/arm/Makefile.in.gtk-2.0 sim/arm/Makefile.in
|
||||
-cp sim/arm/configure.gtk-2.0 sim/arm/configure
|
||||
+cp sim/arm/configure.gtk2.0 sim/arm/configure
|
||||
|
@ -1,288 +1 @@
|
||||
bin/arm-elf-run
|
||||
bin/skyeye
|
||||
bin/skyinsight
|
||||
lib/insight1.0/plugins.tcl
|
||||
lib/libarm-elf-sim.a
|
||||
lib/libiberty.a
|
||||
lib/libmmalloc.a
|
||||
share/insight1.0/about.tcl
|
||||
share/insight1.0/actiondlg.tcl
|
||||
share/insight1.0/attachdlg.itb
|
||||
share/insight1.0/attachdlg.ith
|
||||
share/insight1.0/blockframe.itb
|
||||
share/insight1.0/blockframe.ith
|
||||
share/insight1.0/bpwin.itb
|
||||
share/insight1.0/bpwin.ith
|
||||
share/insight1.0/browserwin.itb
|
||||
share/insight1.0/browserwin.ith
|
||||
share/insight1.0/console.itb
|
||||
share/insight1.0/console.ith
|
||||
share/insight1.0/data.itb
|
||||
share/insight1.0/data.ith
|
||||
share/insight1.0/debugwin.itb
|
||||
share/insight1.0/debugwin.ith
|
||||
share/insight1.0/download.itb
|
||||
share/insight1.0/download.ith
|
||||
share/insight1.0/editor.tcl
|
||||
share/insight1.0/ehandler.itb
|
||||
share/insight1.0/ehandler.ith
|
||||
share/insight1.0/embeddedwin.ith
|
||||
share/insight1.0/gdbevent.itb
|
||||
share/insight1.0/gdbevent.ith
|
||||
share/insight1.0/gdbmenubar.itcl
|
||||
share/insight1.0/gdbtoolbar.itcl
|
||||
share/insight1.0/gdbwin.ith
|
||||
share/insight1.0/globalpref.itb
|
||||
share/insight1.0/globalpref.ith
|
||||
share/insight1.0/help/breakpoint.html
|
||||
share/insight1.0/help/browser.html
|
||||
share/insight1.0/help/console.html
|
||||
share/insight1.0/help/debug.html
|
||||
share/insight1.0/help/gbl_pref.html
|
||||
share/insight1.0/help/help.html
|
||||
share/insight1.0/help/images/frame_info.gif
|
||||
share/insight1.0/help/images/index.gif
|
||||
share/insight1.0/help/images/mem_menu.gif
|
||||
share/insight1.0/help/images/mem_popup.gif
|
||||
share/insight1.0/help/images/mem_pref.gif
|
||||
share/insight1.0/help/images/src_bal.gif
|
||||
share/insight1.0/help/images/src_bp_bal.gif
|
||||
share/insight1.0/help/images/src_bpop.gif
|
||||
share/insight1.0/help/images/src_menu.gif
|
||||
share/insight1.0/help/images/src_pop.gif
|
||||
share/insight1.0/help/images/src_stat.gif
|
||||
share/insight1.0/help/images/src_thread.gif
|
||||
share/insight1.0/help/images/src_toolbar.gif
|
||||
share/insight1.0/help/index.html
|
||||
share/insight1.0/help/license.html
|
||||
share/insight1.0/help/locals.html
|
||||
share/insight1.0/help/memory.html
|
||||
share/insight1.0/help/reg_pref.html
|
||||
share/insight1.0/help/register.html
|
||||
share/insight1.0/help/session.html
|
||||
share/insight1.0/help/source.html
|
||||
share/insight1.0/help/src_pref.html
|
||||
share/insight1.0/help/stack.html
|
||||
share/insight1.0/help/target.html
|
||||
share/insight1.0/help/thread.html
|
||||
share/insight1.0/help/trace/console.html
|
||||
share/insight1.0/help/trace/gbl_pref.html
|
||||
share/insight1.0/help/trace/help.html
|
||||
share/insight1.0/help/trace/index.toc
|
||||
share/insight1.0/help/trace/license.html
|
||||
share/insight1.0/help/trace/locals.html
|
||||
share/insight1.0/help/trace/memory.html
|
||||
share/insight1.0/help/trace/reg_pref.html
|
||||
share/insight1.0/help/trace/register.html
|
||||
share/insight1.0/help/trace/source.html
|
||||
share/insight1.0/help/trace/src_pref.html
|
||||
share/insight1.0/help/trace/stack.html
|
||||
share/insight1.0/help/trace/target.html
|
||||
share/insight1.0/help/trace/tdump.html
|
||||
share/insight1.0/help/trace/tp.html
|
||||
share/insight1.0/help/trace/tracedlg.html
|
||||
share/insight1.0/help/trace/watch.html
|
||||
share/insight1.0/help/watch.html
|
||||
share/insight1.0/helpviewer.itb
|
||||
share/insight1.0/helpviewer.ith
|
||||
share/insight1.0/images/Movie_off.gif
|
||||
share/insight1.0/images/Movie_on.gif
|
||||
share/insight1.0/images/back.gif
|
||||
share/insight1.0/images/bottom.gif
|
||||
share/insight1.0/images/bp.gif
|
||||
share/insight1.0/images/build.gif
|
||||
share/insight1.0/images/check.gif
|
||||
share/insight1.0/images/console.gif
|
||||
share/insight1.0/images/continue.gif
|
||||
share/insight1.0/images/down.gif
|
||||
share/insight1.0/images/edit.gif
|
||||
share/insight1.0/images/file.gif
|
||||
share/insight1.0/images/finish.gif
|
||||
share/insight1.0/images/fore.gif
|
||||
share/insight1.0/images/gdbtk.gif
|
||||
share/insight1.0/images/gdbtk_icon.gif
|
||||
share/insight1.0/images/help.gif
|
||||
share/insight1.0/images/home.gif
|
||||
share/insight1.0/images/icons.txt
|
||||
share/insight1.0/images/insight.gif
|
||||
share/insight1.0/images/less.gif
|
||||
share/insight1.0/images/memory.gif
|
||||
share/insight1.0/images/more.gif
|
||||
share/insight1.0/images/next.gif
|
||||
share/insight1.0/images/next_check.gif
|
||||
share/insight1.0/images/next_frame.gif
|
||||
share/insight1.0/images/next_hit.gif
|
||||
share/insight1.0/images/next_line.gif
|
||||
share/insight1.0/images/nexti.gif
|
||||
share/insight1.0/images/open.gif
|
||||
share/insight1.0/images/opt.gif
|
||||
share/insight1.0/images/prev_hit.gif
|
||||
share/insight1.0/images/reg.gif
|
||||
share/insight1.0/images/rewind.gif
|
||||
share/insight1.0/images/run.gif
|
||||
share/insight1.0/images/run_expt.gif
|
||||
share/insight1.0/images/src.gif
|
||||
share/insight1.0/images/stack.gif
|
||||
share/insight1.0/images/step.gif
|
||||
share/insight1.0/images/stepi.gif
|
||||
share/insight1.0/images/stop.gif
|
||||
share/insight1.0/images/tdump.gif
|
||||
share/insight1.0/images/tools.gif
|
||||
share/insight1.0/images/tools2_3d.gif
|
||||
share/insight1.0/images/tp.gif
|
||||
share/insight1.0/images/up.gif
|
||||
share/insight1.0/images/vars.gif
|
||||
share/insight1.0/images/vmake.gif
|
||||
share/insight1.0/images/watch.gif
|
||||
share/insight1.0/images/watch_movie.gif
|
||||
share/insight1.0/images2/Movie_off.gif
|
||||
share/insight1.0/images2/Movie_on.gif
|
||||
share/insight1.0/images2/back.gif
|
||||
share/insight1.0/images2/bottom.gif
|
||||
share/insight1.0/images2/bp.gif
|
||||
share/insight1.0/images2/build.gif
|
||||
share/insight1.0/images2/check.gif
|
||||
share/insight1.0/images2/console.gif
|
||||
share/insight1.0/images2/continue.gif
|
||||
share/insight1.0/images2/down.gif
|
||||
share/insight1.0/images2/edit.gif
|
||||
share/insight1.0/images2/file.gif
|
||||
share/insight1.0/images2/finish.gif
|
||||
share/insight1.0/images2/fore.gif
|
||||
share/insight1.0/images2/function.gif
|
||||
share/insight1.0/images2/gdbtk.gif
|
||||
share/insight1.0/images2/gdbtk_icon.gif
|
||||
share/insight1.0/images2/help.gif
|
||||
share/insight1.0/images2/home.gif
|
||||
share/insight1.0/images2/icons.txt
|
||||
share/insight1.0/images2/insight.gif
|
||||
share/insight1.0/images2/less.gif
|
||||
share/insight1.0/images2/load.gif
|
||||
share/insight1.0/images2/memory.gif
|
||||
share/insight1.0/images2/more.gif
|
||||
share/insight1.0/images2/next.gif
|
||||
share/insight1.0/images2/next_check.gif
|
||||
share/insight1.0/images2/next_frame.gif
|
||||
share/insight1.0/images2/next_hit.gif
|
||||
share/insight1.0/images2/next_line.gif
|
||||
share/insight1.0/images2/nexti.gif
|
||||
share/insight1.0/images2/open.gif
|
||||
share/insight1.0/images2/opt.gif
|
||||
share/insight1.0/images2/prev_hit.gif
|
||||
share/insight1.0/images2/reg.gif
|
||||
share/insight1.0/images2/rewind.gif
|
||||
share/insight1.0/images2/run.gif
|
||||
share/insight1.0/images2/run_expt.gif
|
||||
share/insight1.0/images2/src.gif
|
||||
share/insight1.0/images2/stack.gif
|
||||
share/insight1.0/images2/step.gif
|
||||
share/insight1.0/images2/stepi.gif
|
||||
share/insight1.0/images2/stop.gif
|
||||
share/insight1.0/images2/target.gif
|
||||
share/insight1.0/images2/tdump.gif
|
||||
share/insight1.0/images2/tools.gif
|
||||
share/insight1.0/images2/tools2_3d.gif
|
||||
share/insight1.0/images2/tp.gif
|
||||
share/insight1.0/images2/up.gif
|
||||
share/insight1.0/images2/vars.gif
|
||||
share/insight1.0/images2/vmake.gif
|
||||
share/insight1.0/images2/watch.gif
|
||||
share/insight1.0/images2/watch_movie.gif
|
||||
share/insight1.0/interface.tcl
|
||||
share/insight1.0/kod.itb
|
||||
share/insight1.0/kod.ith
|
||||
share/insight1.0/locals.tcl
|
||||
share/insight1.0/main.tcl
|
||||
share/insight1.0/managedwin.itb
|
||||
share/insight1.0/managedwin.ith
|
||||
share/insight1.0/mempref.itb
|
||||
share/insight1.0/mempref.ith
|
||||
share/insight1.0/memwin.itb
|
||||
share/insight1.0/memwin.ith
|
||||
share/insight1.0/modal.tcl
|
||||
share/insight1.0/pluginwin.itcl
|
||||
share/insight1.0/prefs.tcl
|
||||
share/insight1.0/process.itb
|
||||
share/insight1.0/process.ith
|
||||
share/insight1.0/regwin.itb
|
||||
share/insight1.0/regwin.ith
|
||||
share/insight1.0/session.tcl
|
||||
share/insight1.0/srcbar.itcl
|
||||
share/insight1.0/srcpref.itb
|
||||
share/insight1.0/srcpref.ith
|
||||
share/insight1.0/srctextwin.itb
|
||||
share/insight1.0/srctextwin.ith
|
||||
share/insight1.0/srcwin.itb
|
||||
share/insight1.0/srcwin.ith
|
||||
share/insight1.0/stackwin.itb
|
||||
share/insight1.0/stackwin.ith
|
||||
share/insight1.0/targetselection.itb
|
||||
share/insight1.0/targetselection.ith
|
||||
share/insight1.0/tclIndex
|
||||
share/insight1.0/tdump.tcl
|
||||
share/insight1.0/tfind_args.tcl
|
||||
share/insight1.0/toolbar.tcl
|
||||
share/insight1.0/toplevelwin.ith
|
||||
share/insight1.0/tracedlg.tcl
|
||||
share/insight1.0/tty.tcl
|
||||
share/insight1.0/util.tcl
|
||||
share/insight1.0/variables.tcl
|
||||
share/insight1.0/warning.tcl
|
||||
share/insight1.0/watch.tcl
|
||||
share/locale/da/LC_MESSAGES/opcodes.mo
|
||||
share/locale/de/LC_MESSAGES/opcodes.mo
|
||||
share/locale/es/LC_MESSAGES/opcodes.mo
|
||||
share/locale/fr/LC_MESSAGES/opcodes.mo
|
||||
share/locale/id/LC_MESSAGES/opcodes.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/opcodes.mo
|
||||
share/locale/sv/LC_MESSAGES/opcodes.mo
|
||||
share/locale/tr/LC_MESSAGES/opcodes.mo
|
||||
share/redhat/gui/advice.tcl
|
||||
share/redhat/gui/balloon.tcl
|
||||
share/redhat/gui/bbox.tcl
|
||||
share/redhat/gui/bgerror.tcl
|
||||
share/redhat/gui/bindings.tcl
|
||||
share/redhat/gui/canvas.tcl
|
||||
share/redhat/gui/center.tcl
|
||||
share/redhat/gui/cframe.tcl
|
||||
share/redhat/gui/combobox.tcl
|
||||
share/redhat/gui/debug.tcl
|
||||
share/redhat/gui/def.tcl
|
||||
share/redhat/gui/font.tcl
|
||||
share/redhat/gui/gensym.tcl
|
||||
share/redhat/gui/gettext.tcl
|
||||
share/redhat/gui/hooks.tcl
|
||||
share/redhat/gui/internet.tcl
|
||||
share/redhat/gui/lframe.tcl
|
||||
share/redhat/gui/list.tcl
|
||||
share/redhat/gui/looknfeel.tcl
|
||||
share/redhat/gui/menu.tcl
|
||||
share/redhat/gui/mono.tcl
|
||||
share/redhat/gui/multibox.tcl
|
||||
share/redhat/gui/pane.tcl
|
||||
share/redhat/gui/panedwindow.tcl
|
||||
share/redhat/gui/parse_args.tcl
|
||||
share/redhat/gui/path.tcl
|
||||
share/redhat/gui/pkgIndex.tcl
|
||||
share/redhat/gui/postghost.tcl
|
||||
share/redhat/gui/prefs.tcl
|
||||
share/redhat/gui/print.tcl
|
||||
share/redhat/gui/sendpr.tcl
|
||||
share/redhat/gui/tclIndex
|
||||
share/redhat/gui/toolbar.tcl
|
||||
share/redhat/gui/topbind.tcl
|
||||
share/redhat/gui/ulset.tcl
|
||||
share/redhat/gui/ventry.tcl
|
||||
share/redhat/gui/wframe.tcl
|
||||
share/redhat/gui/wingrab.tcl
|
||||
@dirrm share/redhat/gui
|
||||
@dirrm share/redhat
|
||||
@dirrm share/nls/en_US.US-ASCII
|
||||
@dirrm share/nls/POSIX
|
||||
@dirrm share/insight1.0/images2
|
||||
@dirrm share/insight1.0/images
|
||||
@dirrm share/insight1.0/help/trace
|
||||
@dirrm share/insight1.0/help/images
|
||||
@dirrm share/insight1.0/help
|
||||
@dirrm share/insight1.0
|
||||
@dirrm lib/insight1.0
|
||||
|
Loading…
Reference in New Issue
Block a user