ICode9

精准搜索请尝试: 精确搜索
首页 > 系统相关> 文章详细

Ubuntu 中linux 编译错误的(-)

2019-07-11 12:50:36  阅读:244  来源: 互联网

标签:linux bin sudo 错误 make Ubuntu 编译 sh Error


1.错误

compress.c:14:58: fatal error: zlib.h: No such file or directory
compilation terminated.

解决:sudo apt-get install zlib1g-dev

2.错误

make[2]: bison: Command not found

解决:sudo apt-get install bison

3.错误

/bin/sh: flex: not found
make[2]: *** [lib/conf-lex.c] Error 127

解决:sudo apt-get install flex

4.错误

lib/libsensors.so: undefined reference to `sensors_yylex'
lib/libsensors.so: undefined reference to `sensors_yyin'
lib/libsensors.so: undefined reference to `sensors_lex_error'
lib/libsensors.so: undefined reference to `sensors_yylineno'
collect2: ld returned 1 exit status
make[2]: *** [prog/sensors/sensors] Error 1

解决:After installing flex and/or bison, you'll need to 'make clean' before 'make user' will work properly.

5.错误

/bin/sh: gmake: not found
make[3]: *** [clean] Error 1


原因:在ubuntu中已经取消掉了gmake,都用make代替。

解决:

$ sudo ln -s /usr/bin/make  /usr/bin/gmake

6.错误

(cd basis/build/linux-am34-bluraypan; sh build_me.sh -c -b  -j -L lex)
[: 133: unexpected operator
[: 133: unexpected operator
***Error: DirectFB path point to an invalid path
Hint: you can set DirectFB path by:
1. setenv MEI2_TOOLCHAIN_JAVA_DIR your_directfb_path
2. use -D build switch, type build_me.sh -h for help
make[4]: *** [clean] Error 1

解决:$ sudo dpkg-reconfigure dash(可见dash的说明文)
选择[NO]

7.错误

Sequence (?<\...) not recognized in regex; marked by <-- HERE in m//+|(?<\ <-- HERE !/)$/ at -e line 1.

解决:perl版本差别引起的异常message

降级perl版本至5.8.9

8.错误

xftlex.l: In function `XftConfigLexDone':
xftlex.l:274: `XftConfig_current_buffer' undeclared (first use in this function)

解决:

flex包版本不匹配.降级到2.5.4后,make clean后,编译通过.

9.错误

make[5]: makeinfo: Command not found
make[5]: *** [libext2fs.info] Error 127

解决:$ sudo apt-get install texinfo

10.错误

/bin/sh: line 1: gawk: command not found
make[6]: *** [stamp-gtktypebuiltins.h] Error 127

解决:$ sudo apt-get install gawk

11.错误

/bin/sh: line 2: indent: command not found
make[6]: *** [stamp-gtkmarshal.h] Error 127

解决:$ sudo apt-get install indent

 

转自https://blog.csdn.net/namecyf/article/details/7299413

标签:linux,bin,sudo,错误,make,Ubuntu,编译,sh,Error
来源: https://www.cnblogs.com/gavin-world/p/11169282.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有