fix debugging-left-over

This commit is contained in:
Vitor Santos Costa 2014-09-17 16:55:19 -05:00
parent 00d87ca661
commit 6b0d99e2fe
6 changed files with 25699 additions and 4556 deletions

View File

@ -843,7 +843,6 @@ CopyTermToArena(Term t, Term arena, bool share, bool copy_att_vars, UInt arity,
newarena = (CELL *)XREGS[arity+3];
arena = Deref(XREGS[arity+2]);
t = XREGS[arity+1];
Yap_DebugPlWrite(t);
old_size = ArenaSz(arena);
goto restart;
}

View File

@ -627,6 +627,7 @@ libYap.a: $(LIB_OBJECTS) yapi.o
adb push $(GMPDIR)/lib/libgmp.so /data/yap
adb push $(srcdir)/swi/library /data/yap/swi/library
adb push $(srcdir)/pl /data/yap/pl/
adb push $(srcdir)/library /data/yap/library/
adb shell "echo \"bootstrap('/data/yap/pl/init.yap'). module(user). qsave_program('/data/yap/startup.yss').\" | LD_LIBRARY_PATH=/data/yap /data/yap/yap@EXEC_SUFFIX@ -b /data/yap/pl/boot.yap"
adb pull /data/yap/startup.yss
adb shell rm -rf /data/yap

View File

@ -971,9 +971,6 @@
/* Define to the one symbol short name of this package. */
#undef PACKAGE_TARNAME
/* Define to the home page for this package. */
#undef PACKAGE_URL
/* Define to the version of this package. */
#undef PACKAGE_VERSION

29672
configure vendored

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -149,8 +149,8 @@ typedef unsigned long uintptr_t;
#endif
#ifndef PL_HAVE_TERM_T
#define PL_HAVE_TERM_T
typedef intptr_t term_t;
#define PL_HAVE_TERM_Temacs
typedef uintptr_t term_t;
#endif
typedef struct mod_entry *module_t;
typedef struct DB_STRUCT *record_t;