1. 4.2 build instructions glitch
- Posted by axtens_bruce in January
- 602 views
On the https://openeuphoria.org/wiki/view/DownloadEuphoria.wc#buildingfromsource page it says
Run configure and make $ cd euphoria $ ./configure $ make
However the configure script is actually in euphoria/source
-Bruce
2. Re: 4.2 build instructions glitch
- Posted by ghaberek (admin) in January
- 514 views
(From your other thread)
How does one tell script not to capture escape codes?
I don't think you can? Seems like the point of using script is to capture everything. I don't like using it for that reason. I typically just pipe things through tee when I need to see and capture a program's output, e.g. make | tee make.log
-Greg
P.S. Please use the triple curly braces for {{{ / }}} unformatted plain text. The <eucode> tag is meant for adding syntax highlighting to Euphoria code.
3. Re: 4.2 build instructions glitch
- Posted by ghaberek (admin) in January
- 536 views
On the https://openeuphoria.org/wiki/view/DownloadEuphoria.wc#buildingfromsource page it says
Run configure and make $ cd euphoria $ ./configure $ make
The wiki is slightly wrong. It should be:
cd euphoria/source
As there's no configure file in the root euphoria directory. Otherwise that is correct. I will updated the wiki shortly.
However the configure script is actually in euphoria/source
The configure script is actually written in Bash.
Do you have Euphoria 4.1 installed and working on this system already? Most of Euphoria is written in Euphoria, so it requires the translator to build the new version.
-Greg