Re: Error using euc
- Posted by irv Oct 31, 2022
- 672 views
Although for most purposes, interpreting or binding EuGTK programs works fine, if you wish to compile your program, on newest Linux distros (e.g. Mint 19) euc fails: You'll need to run a short script:.
euc -build-dir build -extra-lflags="-no-pie" -makefile $1.ex cd ./build make -j8 -f $1.mak
Replace the -j8 with -j[n] where [n] is the number of processors you have. Makes compilation faster.
Runtime exe will be back in your home folder.
Hope that solves the problem, and welcome back!