Author: Armin Rigo <[email protected]>
Branch: use-gcc
Changeset: r1769:f30914e4a7f8
Date: 2015-05-24 11:20 +0200
http://bitbucket.org/pypy/stmgc/changeset/f30914e4a7f8/

Log:    Expect the patched version of gcc to be available under the name
        'gcc-seg-gs'.

diff --git a/c7/demo/Makefile b/c7/demo/Makefile
--- a/c7/demo/Makefile
+++ b/c7/demo/Makefile
@@ -19,7 +19,7 @@
 
 COMMON = -I.. -pthread -lrt -g -Wall -Werror -DSTM_LARGEMALLOC_TEST
 
-CC = ../test/gcc-patched
+CC = gcc-seg-gs
 
 
 # note that 'build' is partially optimized but still contains all asserts
diff --git a/c7/test/common.py b/c7/test/common.py
--- a/c7/test/common.py
+++ b/c7/test/common.py
@@ -3,7 +3,7 @@
 assert sys.maxint == 9223372036854775807, "requires a 64-bit environment"
 
 # ----------
-os.environ['CC'] = './gcc-patched'
+os.environ['CC'] = 'gcc-seg-gs'
 
 parent_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
 
diff --git a/c7/test/gcc-patched b/c7/test/gcc-patched
deleted file mode 100755
--- a/c7/test/gcc-patched
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/bash
-
-# TEMPORARY
-exec /home/arigo/svn/gcc/build/gcc/xgcc -B /home/arigo/svn/gcc/build/gcc "$@"
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to