【发布时间】:2015-10-14 17:24:26
【问题描述】:
tar xvjf flex-2.5.39.tar.bz2 // Uncompress the archive
cd flex-2.5.39 //
./configure --prefix=$HOME/flex // ./configure
*No errors* // success with no error
make // run make
One thounsand lines later... // Error
.../flex-2.5.39/missing: line 52: flex: command not found
WARNING: `flex` is missing on your system. You should only need it if you modified a `.l` ...etc
错误说我的系统中没有安装 flex,我缺少什么?我正在安装它。
谢谢
【问题讨论】:
-
在
command not found行之前包含更多错误上下文会有所帮助。或者这真的只是一个警告(不是错误),然后构建成功完成?
标签: linux makefile redhat flex-lexer configure