ChinaUnix.net
相关文章推荐:

crosscompile to build programs to run on HOST

本帖最后由 rxxluowei 于 2010-10-25 18:09 编辑 INSTALL中原文: #step 7. run server programs #start the tracker server: /usr/local/bin/fdfs_trackerd /etc/fdfs/tracker.conf #in Linux, you can start fdfs_trackerd as a service: /sbin/service fdfs_trackerd start 报错: root@ubuntu:/etc/fdfs# /sbin/service fdfs_trackerd start bash: /sbin/service: No such file or directory 小弟不解,求解释,不胜感激~...

by rxxluowei - 分布式文件系统(FastDFS) - 2013-11-07 15:48:00 阅读(2970) 回复(6)

相关讨论

安装apache时,有两个错误提示,如下: 1. error while loading shared libraries: libmysqlclient_r.so.15: cannot open shared object file: No such file or directory 2.error: cannot run C compiled programs. 各位高手有碰到这种情况的吗?该如何解决? ---------------------------------------------------------------------------------- configure:4352: checking whether the C compiler works configure:4362: ....

by mouzhi - Linux系统管理 - 2008-06-21 13:08:06 阅读(4750) 回复(8)

安装啥./configure时都出来这一句 checking whether the C compiler works... configure: error: cannot run C compiled programs.

by ayaa - 系统管理 - 2006-11-05 19:52:47 阅读(2876) 回复(4)

安装啥./configure时都出来这一句 checking whether the C compiler works... configure: error: cannot run C compiled programs.

by ayaa - Linux系统管理 - 2008-04-03 21:23:16 阅读(7587) 回复(5)

Cenos5.2环境, php-5.1.6.src.rpm,不改SPEC文件编译没的问题,会生成php-* 但我想加入oracle支持,修改了SPEC文件,rpmbuild一直提示checking whether the C compiler works... configure: error: cannot run C compiled programs. 网上google了一下,一种是权限问题,另一种说是PATH中没有gcc 但我是以root运行的,另外PATH中有/usr/bin/gcc.编译一般的C程序也没的问题. 谢谢! 添加内容如下: #%if %{with_oci8} %package oci8 Grou...

by linewer - PHP - 2008-12-23 15:11:04 阅读(1824) 回复(0)

by tangke 2009-09-10 本文从豹哥的《手把手教你源代码制作龙芯64位系统》中摘录下来。 主要介绍configure 中host,build,target参数的作用。 详见 http://youbest.cublog.cn/ buildhost和target     在交叉编译中比较常见的一些参数就是buildhost和target了,正确的理解这三者的含义对于交叉编译是非常重要的,下面就此进行解释     --build=编译该软件所使用的平台     --host=该软件将运行的平台     --tar...

by fewlife - Linux文档专区 - 2009-09-09 17:31:42 阅读(886) 回复(0)

今天看到了Michael Nottebrock更新了${PORTSDIR}/Mk/bsd.qt.mk修正了我之前所提的问题: - bsd.qt.mk: QT_COMPONENTS can now be depended on at runtime or buildtime only by specifiying them as _build or _run, respectively. Specifying without any suffix will depend on the component at both build- and runtime just like before. 这下做QT4的ports就没那么迷惘了。 http://www.freebsd.org/cgi/cvsweb.cgi/ports/Mk/...

by 哈蜜瓜 - BSD文档中心 - 2007-08-03 07:35:40 阅读(1113) 回复(0)

configure 的build host target参数合法取值有哪些? 这三个参数的意思我明白, 可是, 我指定--build=x86_64-pc-windows或--build=x86_64-pc-Windows_NT, 得到"无法识别的system错误" 我如何得到这个合法的system列表? 我尝试 man gcc, 没发现我想要的东西

by faku - Shell - 2013-11-21 15:44:08 阅读(5171) 回复(11)

--build = 软件在什么平台下编译 --host = 软件在什么平台下运行 --target = 软件为什么平台服务(仅限开发工具链) 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u2/88585/showart_2100067.html

by arthur.hawkings - Linux文档专区 - 2009-11-21 16:35:12 阅读(781) 回复(0)

buildhost和target     在交叉编译中比较 常见 的一些参数就是buildhost和target了,正确的理解这三者的含义对于交叉编译是非常重要的,下面就此进行解释     --build=编译该软件所使用的平台     --host=该软件将运行的平台     --target=该软件所处理的目标平台     我们以 gcc 为例子来 讲解 这三者的作用     在gcc编译中我们使用     ./configure --build=编译平台 --host=运行平台 --targ...

by tuyer - Linux文档专区 - 2009-02-10 13:51:05 阅读(826) 回复(0)

具体解释一下,build就是你正在使用的机器,host就是你编译好的程序可以运行的平台,target就是你编译的程序可以处理的平台.这个 buildhost比较好理解,但是target就不好办了,到底什么意思呢?一般来说,我们平时所说的交差编译用不到他target的,比如. /configure --build=i386-linux,--host=arm-linux就可以了,在386的平台上编译可以运行在arm板的程序.但是,一般我们都是编译程序,而不是编译工具,如果我们编译工具,比如gcc,这个target...

by blworld - Linux文档专区 - 2008-03-28 18:01:50 阅读(797) 回复(0)