update for new release
authorMatthias Braun <matze@braunis.de>
Wed, 7 Dec 2011 18:00:22 +0000 (19:00 +0100)
committerMatthias Braun <matze@braunis.de>
Fri, 23 Dec 2011 10:36:39 +0000 (11:36 +0100)
NEWS.md
README.md
make_release.sh

diff --git a/NEWS.md b/NEWS.md
index 74e01c8..219d951 100644 (file)
--- a/NEWS.md
+++ b/NEWS.md
@@ -1,4 +1,4 @@
-cpasrer 0.9.13 (2011-12-07)
+cparser 0.9.13 (2011-12-07)
 ---------------------------
 
 * Adapt to libfirm-1.20.0
index 9397ab2..be46246 100644 (file)
--- a/README.md
+++ b/README.md
@@ -17,13 +17,23 @@ Requirements:
 
 * A C99 compiler (gcc and icc are known to work).
 * pkg-config (recommended)
-* libFirm-1.12.1 or later
+* libFirm-1.20 or later
 
 Make sure you have installed libFirm and pkg-config can find the libfirm.pc
 files ("pkg-config --modversion libfirm" should work). Use (GNU)-make to build
 cparser.
 
-3. Contact
+3. Troubleshooting
+------------------
+
+x86\_64 Systems:
+libFirm uses a 32bit x86 backend by default, while it also uses the systems
+default preprocessor/linker. This results on a x86\_64 linker being used
+for 32bit assembly. If you see assembler errors like
+"suffix or operand invalid for 'push'", then you probably have this problem.
+Use the -m32 flag to force usage of system 32bit preprocessor/linker.
+
+4. Contact
 ----------
 
 There's a Bugtracker at http://pp.info.uni-karlsruhe.de/~firm/bugs
index 1c8ce09..68bb070 100755 (executable)
@@ -2,12 +2,12 @@
 
 #set -x
 WORKDIR="release"
-VERSION="0.9.12"
+VERSION="0.9.13"
 RELEASEDIR="cparser-$VERSION"
 FULLRELEASEDIR="$WORKDIR/$RELEASEDIR"
 RELEASEFILE="cparser-$VERSION.tar.bz2"
 SOURCEDIRS="adt builtins driver win32 wrappergen ."
-ADDFILES="README TODO NEWS AUTHOR COPYING cparser.1"
+ADDFILES="README.md NEWS.md AUTHOR COPYING cparser.1"
 
 rm -rf "$FULLRELEASEDIR"