Closed ASL07 closed 4 years ago
Hi, I'm glad you appreciate this command, thanks for your message.
I've just compiled hl in an Ubuntu VM (19.10) using flex 2.6.4, and I had no problem to compile it : mb@vm-ubuntu-19:~/hl/src$ make cc -c -o cr_main.o cr_main.c cc -c -o cr_gpri.o cr_gpri.c lex -t cr_lex.l > cr_lex.c cc -c -o cr_lex.o cr_lex.c ./hl: version 1.93
Do you have additional error messages to give me that could better show the problem you encounter ? What version of Ubuntu do you use exactly ? Thanks.
Hi, do you still have problems with the compilation, or may I close this issue ?
Hi, it's been more than one month now that I answered your mail. Since I've got no more message from you, I close this issue. If you need additional information, feel free to re-open it. Thanks. Regards,
Martial
For anyone may referenced to this issue, the most possible reason is:
make
without lex
installed, then you may installed it via package mgr like apt
or dnf
etc.make
again with flex installed. but in step 1 the Makefile
already created an empty cr_lex.c
file, and the make
didn't give a shxt on it, make
just works and generate dry zombie cr_lex.o
ld
complainsso, the solution is: rm cr_lex.c && make clean && make
Hi, thanks for your great tool!
I am having some errors compiling on Ubuntu server. Hope you can have a look:
OS version
I have installed flex package version 2.6.4
But I get the following errors when running make:
Thanks