-
|
Hi, I literally discovered Rebol today and got instantly catched...is it finally THE language? :) Since there are no current prebuild binaries for my platform available I have to build Rebol 3 Is there any instructions available for a Linuxer which just encountered Rebol just hours before and knows Cheers! |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 1 reply
-
|
Hi, Rebol building process depends on already available Rebol to do preprocessing of its sources.. for Posix systems it is possible to use pregenerated Bootstrap branch. You may see it used in this Docker example: https://github.com/Oldes/Rebol-Docker?tab=readme-ov-file#bootstrap-rebol-for-red-hat-8-linux-distro The example is for a Rebol script, but I think it is easy to read all necessary steps which must be done to build own bootstrap version and then use this rebol-stage0 version to make a proper build. I'm currently on holiday with limited access to net, but if needed, I may prepare Gentoo build next week. |
Beta Was this translation helpful? Give feedback.
-
|
Btw.. the Siskin Builder is just a customized Rebol with embedded script, which I use to simplify various compilation processes (not only for building Rebol) |
Beta Was this translation helpful? Give feedback.
-
|
Also... I think that you can just do: wget https://github.com/Oldes/Rebol3/releases/download/3.21.0/rebol3-bulk-linux-x64.gz
gunzip rebol3-bulk-linux-x64.gz
chmod +x rebol3-bulk-linux-x64
./rebol3-bulk-linux-x64 |
Beta Was this translation helpful? Give feedback.
-
|
Here is a script to do the bootstrap build in a Gentoo image: |
Beta Was this translation helpful? Give feedback.
Also... I think that you can just do: