@@ -3,6 +3,12 @@
int main(int argc, char *argv[]) {
Inter *inter = NULL;
+#ifdef DEBUG
+ setbuf(stdout, NULL); // debug模式下关闭缓冲区以尽快输出信息便于debug
+ setbuf(stderr, NULL);
+ setbuf(stdin, NULL);
+#endif
+
atexit(freeArgs);
signal(SIGINT, SIG_IGN);
if (setjmp(memVirtualMath_Env) == -1){