[pypy-commit] stmgc default: fix also the duhton target

fijal noreply at buildbot.pypy.org
Thu Jul 4 13:55:33 CEST 2013


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: 
Changeset: r347:7a86a8b3cbb1
Date: 2013-07-04 13:54 +0200
http://bitbucket.org/pypy/stmgc/changeset/7a86a8b3cbb1/

Log:	fix also the duhton target

diff --git a/duhton/Makefile b/duhton/Makefile
--- a/duhton/Makefile
+++ b/duhton/Makefile
@@ -2,10 +2,10 @@
 all: duhton_debug duhton
 
 duhton: *.c *.h ../c4/*.c ../c4/*.h
-	gcc -lrt -pthread -g -O2 -o duhton *.c ../c4/stmgc.c -Wall
+	gcc -pthread -g -O2 -o duhton *.c ../c4/stmgc.c -Wall -lrt 
 
 duhton_debug: *.c *.h ../c4/*.c ../c4/*.h
-	gcc -lrt -pthread -g -DDu_DEBUG -D_GC_DEBUG=2 -DGC_NURSERY=2048 -o duhton_debug *.c ../c4/stmgc.c -Wall
+	gcc -pthread -g -DDu_DEBUG -D_GC_DEBUG=2 -DGC_NURSERY=2048 -o duhton_debug *.c ../c4/stmgc.c -Wall -lrt 
 
 clean:
 	rm -f duhton duhton_debug


More information about the pypy-commit mailing list