Author: Remi Meier <[email protected]>
Branch: c7
Changeset: r638:1c101c79f4dd
Date: 2014-01-18 12:40 +0100
http://bitbucket.org/pypy/stmgc/changeset/1c101c79f4dd/
Log: makefile update
diff --git a/c7/Makefile b/c7/Makefile
--- a/c7/Makefile
+++ b/c7/Makefile
@@ -24,4 +24,6 @@
# note that we don't say -DNDEBUG, so that asserts should still be compiled in
# also, all debug code with extra checks but not the debugprints
build-%: %.c ${H_FILES} ${C_FILES}
- clang -pthread -g $< -o build-$* -Wall ${C_FILES}
+ clang -pthread -g -O1 $< -o build-$* -Wall ${C_FILES}
+release-%: %.c ${H_FILES} ${C_FILES}
+ clang -pthread -g -DNDEBUG -O2 $< -o release-$* -Wall ${C_FILES}
diff --git a/c7/demo2.c b/c7/demo2.c
--- a/c7/demo2.c
+++ b/c7/demo2.c
@@ -7,7 +7,7 @@
#include "core.h"
-#define LIST_LENGTH 5000
+#define LIST_LENGTH 6000
#define BUNCH 400
typedef TLPREFIX struct node_s node_t;
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit