summaryrefslogtreecommitdiff
path: root/src/runtime/c/INSTALL
diff options
context:
space:
mode:
authorkr.angelov <kr.angelov@gmail.com>2012-12-03 09:09:08 +0000
committerkr.angelov <kr.angelov@gmail.com>2012-12-03 09:09:08 +0000
commit6e3321d7126742e16e21289e5fac03192c793075 (patch)
treec38eb3873d64ced443a44cb1821a9620fb4cff66 /src/runtime/c/INSTALL
parent03c3c57290b5f4ba6c3b0b876ce6a2ad13d47793 (diff)
added INSTALL file and updated README file for the C runtime
Diffstat (limited to 'src/runtime/c/INSTALL')
-rw-r--r--src/runtime/c/INSTALL24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/runtime/c/INSTALL b/src/runtime/c/INSTALL
new file mode 100644
index 000000000..a11d2dbe7
--- /dev/null
+++ b/src/runtime/c/INSTALL
@@ -0,0 +1,24 @@
+The compilation steps are:
+
+$ autoreconf -i
+$ ./configure
+$ make
+$ make install
+
+If you want to use the statistical ranking in the parser then you
+have to compile your grammar with the option '-probs=grammar.probs',
+where grammar.probs must contain a tab separated file with
+the probabilities for all functions in the abstract syntax.
+In order to enable the named entity recongizer for the ParseEngAbs
+grammar you also have to add the option '-literal=Symb' while compiling.
+
+Note For Mac OSX users
+----------------------
+
+You have to comment out the following line in config.h:
+
+ #define HAVE_STATEMENT_EXPRESSIONS 1
+
+This has to be done AFTER you have called './configure', but before you call 'make'!
+
+(Tested on Mac OSX 10.8 Mountain Lion with XCode installed)