summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Docs/BUILDING-BeOS20
1 files changed, 20 insertions, 0 deletions
diff --git a/Docs/BUILDING-BeOS b/Docs/BUILDING-BeOS
index 6a2fbfcde..182024788 100644
--- a/Docs/BUILDING-BeOS
+++ b/Docs/BUILDING-BeOS
@@ -72,6 +72,26 @@
$ cp lemon lempar.c /boot/home/config/bin/
+ RE2C
+------
+
+ BeOS doesn't come with the re2c lexer. Unfortunately it requires gcc4
+ currently, so it cannot be built on BeOS. It might be possible on gcc4 built
+ Haiku.
+ The workaround is currently to generate the scanner.c file from Linux, and
+ copy it back to the source tree. Touching it in the future will make sure
+ make won't try to rebuild it.
+
+ (on Linux)
+ $ make css/scanner.c
+
+ (copy to the BeOS box)
+
+ (on BeOS/Haiku)
+ $ cp <somewhere>/scanner.c css/
+ $ touch -t 201801010000 css/scanner.c
+
+
cURL
------