真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

64位linux編譯c提示gnu/stubs-32.h:Nosuchfileordirectory錯誤怎么辦

小編給大家分享一下64位linux編譯c提示gnu/stubs-32.h:No such file or directory錯誤怎么辦,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

創(chuàng)新互聯(lián)公司成都網(wǎng)站建設(shè)定制網(wǎng)站設(shè)計,是成都網(wǎng)站營銷公司,為建筑動畫提供網(wǎng)站建設(shè)服務(wù),有成熟的網(wǎng)站定制合作流程,提供網(wǎng)站定制設(shè)計服務(wù):原型圖制作、網(wǎng)站創(chuàng)意設(shè)計、前端HTML5制作、后臺程序開發(fā)等。成都網(wǎng)站設(shè)計熱線:13518219792

什么是Linux系統(tǒng)

Linux是一種免費使用和自由傳播的類UNIX操作系統(tǒng),是一個基于POSIX的多用戶、多任務(wù)、支持多線程和多CPU的操作系統(tǒng),使用Linux能運行主要的Unix工具軟件、應(yīng)用程序和網(wǎng)絡(luò)協(xié)議。

64位linux提示gnu/stubs-32.h:No such file or directory的解決方法

這個問題是由于缺少32位兼容包,解決辦法:

ubuntu: sudo apt-get install libc6-dev-i386

CentOS:yum -y install glibc-devel.i686

Re阿里云yum源沒有g(shù)libc.i686

阿里云的64位Linux發(fā)行版屏蔽了32位,也就是常見的i686軟件包的數(shù)據(jù)源,你可以修改yum的配置文件/etc/yum.conf,找到其中exclude=*.i?86 kernel kernel-xen kernel-debug,用#注釋掉即可,但是阿里不贊成這么做,如果32位、64位混用,比較容易出問題。

今天在64位linux編譯程序時,出現(xiàn)如下錯誤提示

/usr/include/gnu/stubs.h:7:27: error: gnu/stubs-32.h:No such file or directory

解決方法如下

# yum -y install glibc-devel

場景描述:在編譯程序的時候出現(xiàn)如下的錯誤:
make[1]: Entering directory `/root/rpmbuild/BUILD/test/conf'
In file included from /usr/include/features.h:385,
                 from /usr/include/stdint.h:26,
                 from ../include/MyTypes.h:4,
                 from conf_init.c:1:
/usr/include/gnu/stubs.h:7:27: error: gnu/stubs-32.h: No such file or directory
make[1]: *** [conf_init32.o] Error 1
make[1]: Leaving directory `/root/rpmbuild/BUILD/test/conf'
make: *** [all] Error 1

解決過程:

1完全無法分析天書般的錯誤,英文非常簡單,但是翻譯非常困難,好在
/usr/include/gnu/stubs.h:7:27: error: gnu/stubs-32.h: No such file or directory
這一句了解,好既然少這個文件,拷貝一個文件過來,OK解決問題。
2.經(jīng)過老大的解決思路,看出端倪。
說明如下:conf_init.c:第一行引用../include/MyTypes.h頭文件,
而這個頭文件在第四行引用/usr/include/stdint.h頭文件,
而這個頭文件在第26行引用/usr/include/features.h頭文件,
而這個頭文件在第385行應(yīng)用了/usr/include/gnu/stubs.h頭文件,
而這個頭文件在第7行引用了gnu/stubs-32.h頭文件
然后在編譯的過程中,沒有發(fā)現(xiàn)這個文件。大體意思清楚沒有。
下面是/usr/include/gnu/stubs.h文件的內(nèi)容如下:

/* This file selects the right generated file of `__stub_FUNCTION' macros
  based on the architecture being compiled for. */

#include 

#if __WORDSIZE == 32
# include 
#elif __WORDSIZE == 64
# include 
#els
# error "unexpected value for __WORDSIZE macro"
#endif
~

注明:這個文件說明了64位或者32位編譯環(huán)境選擇的頭文件。所以在編譯的過程中,
使用了-m2的參數(shù)就會鏈接到32位版本的編譯器,修改所有的Makefile文件,查看
是否有什么32位編譯的刪除即可。

查閱的外文資料幾乎沒有任何用處:
On Ubuntu it's called libc6-dev-i386 - do sudo apt-get install libc6-dev-i386. See below for extra instructions for Ubuntu 12.04.

On Red Hat distros, the package name is glibc-devel.i686 (Thanks to David Gardner's comment)

On CentOS 5.8, the package name is glibc-devel.i386 (Thanks to JimKleck's comment)

On CentOS 6.3, the package name is glibc-devel.i686.

On SLES it's called glibc-devel-32bit - do zypper in glibc-devel-32bit
在SLES系統(tǒng)上,執(zhí)行上述指令安裝,在/usr/include/gnu目錄下確實生成了上述的文件。
在CentOS系統(tǒng)上,無效。

64位的機(jī)器上找不到32位的頭文件。所以要安裝glibc-devel.i686(redhat不同系統(tǒng)不太一樣)

隨手搜了一個rpm包,用rpm -ivh安裝報錯:(因為服務(wù)器不聯(lián)外網(wǎng),所以這么安裝)

error:Failed dependencies

忽略依賴關(guān)系問題
rpm –nodeps -i 即可安裝成功

cd /usr/include/gnu/下查看,文件stubs-32.h已經(jīng)存在。解決問題。

下面是/usr/include/gnu/stubs.h文件的內(nèi)容如下:

/* This file selects the right generated file of `__stub_FUNCTION' macros
based on the architecture being compiled for. */

include
if __WORDSIZE == 32
include
elif __WORDSIZE == 64
include
els
error “unexpected value for __WORDSIZE macro”
endif
~

看完了這篇文章,相信你對“64位linux編譯c提示gnu/stubs-32.h:No such file or directory錯誤怎么辦”有了一定的了解,如果想了解更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!


當(dāng)前名稱:64位linux編譯c提示gnu/stubs-32.h:Nosuchfileordirectory錯誤怎么辦
本文URL:http://weahome.cn/article/gijcsi.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部