c - Linker error with flex -
i finished compiling , installing flex macbook pro , tried compile file using flex. following error:
ld: library not found -lfl clang: error: linker command failed exit code 1 (use -v see invocation) make: *** [myhtml2txt] error 1
i believe -lfl
linker flex, why getting error, , how can fix it?
you missing add libflex or libfl. main error ld: library not found -lfl
tells library missing. l in -lfl denotes library. adding library not see error
Comments
Post a Comment