Author: Armin Rigo <[email protected]> Branch: use-gcc Changeset: r1772:8573d2d4aa82 Date: 2015-05-24 14:16 +0200 http://bitbucket.org/pypy/stmgc/changeset/8573d2d4aa82/
Log: Add a README diff --git a/gcc-seg-gs/README.txt b/gcc-seg-gs/README.txt new file mode 100644 --- /dev/null +++ b/gcc-seg-gs/README.txt @@ -0,0 +1,19 @@ +Get gcc release 5.1: + + svn co svn://gcc.gnu.org/svn/gcc/tags/gcc_5_1_0_release + +Apply the patch here. + +Compile gcc as usual: + + mkdir ../build + cd ../build + ./configure --enable-stage1-languages=c + make # or maybe only "make all-stage1-gcc" + +If you don't want to install this patched gcc globally, use this +script and call it 'gcc-seg-gs': + + #!/bin/bash + BUILD=/..../build + exec $BUILD/gcc/xgcc -B $BUILD/gcc "$@" _______________________________________________ pypy-commit mailing list [email protected] https://mail.python.org/mailman/listinfo/pypy-commit
