博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
解决:libtool: line 815: X--tag=CXX: command not found
阅读量:6692 次
发布时间:2019-06-25

本文共 2381 字,大约阅读时间需要 7 分钟。

 

下面这个错误据说是libtool版本问题,需要回退版本,但实际上不用回退版本也可以解决,在libtool文件中找到下列行:
 
# An echo program that protects backslashes.
ECHO="printf %s\\n"
 
将ECHO一句换成:echo="echo",问题即可得到解决,如果没有ECHO="printf %s\\n"一行,但有ECHO="echo"一行,那解决方法是相同的。
 
 
$ make
make all-recursive
make[1]: 正在进入目录 `/data1/mooon/src/common_library/src'
Making all in shell
make[2]: 正在进入目录 `/data1/mooon/src/common_library/src/shell'
make[2]: 没有什么可以做的为 `all'。
make[2]:正在离开目录 `/data1/mooon/src/common_library/src/shell'
Making all in util
make[2]: 正在进入目录 `/data1/mooon/src/common_library/src/util'
g++ -DHAVE_CONFIG_H -I. -I.. -I../../include -D_GNU_SOURCE -rdynamic -Wall -fPIC -g -MT string_util.o -MD -MP -MF .deps/string_util.Tpo -c -o string_util.o `test -f './string_util.cpp' || echo './'`./string_util.cpp
mv -f .deps/string_util.Tpo .deps/string_util.Po
rm -f libutil.a
ar cru libutil.a integer_util.o bit_util.o args_parser.o token_list.o file_format_exception.o string_util.o
ranlib libutil.a
/bin/bash ../libtool --tag=CXX --mode=link g++ -D_GNU_SOURCE -rdynamic -Wall -fPIC -g -rdynamic -fPIC -shared -lm -o libutil.so integer_util.o bit_util.o args_parser.o token_list.o file_format_exception.o string_util.o -lpthread -lm -ldl
../libtool: line 815: X--tag=CXX: command not found
../libtool: line 848: libtool: ignoring unknown tag : command not found
../libtool: line 815: X--mode=link: command not found
../libtool: line 965: *** Warning: inferring the mode of operation is deprecated.: command not found
../libtool: line 966: *** Future versions of Libtool will require -mode=MODE be specified.: command not found
gcc: fatal error: no input files
compilation terminated.
gcc: fatal error: no input files
compilation terminated.
gcc: fatal error: no input files
compilation terminated.
gcc: fatal error: no input files
compilation terminated.
../libtool: line 2119: X-D_GNU_SOURCE: command not found
../libtool: line 2119: X-rdynamic: command not found
../libtool: line 2119: X-Wall: command not found
../libtool: line 2119: X-fPIC: command not found
../libtool: line 2119: X-g: command not found
../libtool: line 2119: X-rdynamic: command not found
../libtool: line 2119: X-fPIC: command not found
../libtool: line 2119: X-shared: command not found
../libtool: line 2283: Xlibutil.so: command not found
X: user not authorized to run the X server, aborting.

 

 

    本文转自eyjian 51CTO博客,原文链接:http://blog.51cto.com/mooon/909926,如需转载请自行联系原作者

你可能感兴趣的文章
Clojure 1.7引入Transducers,提高跨平台支持度
查看>>
QCon北京2015精彩内容前瞻:邀请100余位一线专家,涵盖大数据、云计算、移动等20余个专题...
查看>>
京东私有云建设:挑战与应对之道
查看>>
入门解读:小白也能看懂的容器和虚拟机介绍
查看>>
微软宣布在Azure API管理中预览OpenAPI规范V3
查看>>
Studio 3T:MongoDB SQL探究
查看>>
学习Kubernetes 和容器技术体系的最佳方法
查看>>
红帽收购混合云管理提供商NooBaa,混合云爆发节点临近!
查看>>
Go 1.12发布:改进了运行时性能以及模块支持
查看>>
重提敏捷已死
查看>>
深入理解JUnit 5的扩展模型
查看>>
PostgreSQL中的大容量空间探索时间序列数据存储
查看>>
AWS发布Lambda@Edge,支持在CloudFront CND的边缘服务器上执行Node.js函数
查看>>
Wia为物联网提供云基础设施
查看>>
Data Artisans发布支持ACID事务的流式处理框架Streaming Ledger
查看>>
Microsoft向高性能计算市场推出了新的Azure产品
查看>>
Visual Studio 2017通过SSH支持Git
查看>>
Magento2 自定义后台菜单
查看>>
IntelliJ IDEA 2018.2支持Java 11、MacBook Touch Bar等新特性
查看>>
扩展访问:Uber Lite App开发始末
查看>>