views:

68

answers:

2

One one machine, everything compiles fine. On another machine, it complains about the -ly option when I use gcc to create the output file. If I remove the -ly option, then it makes the program, but then it runs differently. What's happening. How can I get the program to run correctly on this linux machine?

+1  A: 

You should check to see if you have the same flex/bison versions...

rxin
+1  A: 

YACC program options (and generated output) vary from OS to OS. Bison might be more consistent.

Loadmaster