您好,登錄后才能下訂單哦!
小編給大家分享一下64位linux編譯c提示gnu/stubs-32.h:No such file or directory錯誤怎么辦,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
Linux是一種免費使用和自由傳播的類UNIX操作系統,是一個基于POSIX的多用戶、多任務、支持多線程和多CPU的操作系統,使用Linux能運行主要的Unix工具軟件、應用程序和網絡協議。
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源沒有glibc.i686
阿里云的64位Linux發行版屏蔽了32位,也就是常見的i686軟件包的數據源,你可以修改yum的配置文件/etc/yum.conf,找到其中exclude=*.i?86 kernel kernel-xen kernel-debug,用#注釋掉即可,但是阿里不贊成這么做,如果32位、64位混用,比較容易出問題。
今天在64位linux編譯程序時,出現如下錯誤提示
/usr/include/gnu/stubs.h:7:27: error: gnu/stubs-32.h:No such file or directory
解決方法如下
# yum -y install glibc-devel
場景描述:在編譯程序的時候出現如下的錯誤:
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.經過老大的解決思路,看出端倪。
說明如下:conf_init.c:第一行引用../include/MyTypes.h頭文件,
而這個頭文件在第四行引用/usr/include/stdint.h頭文件,
而這個頭文件在第26行引用/usr/include/features.h頭文件,
而這個頭文件在第385行應用了/usr/include/gnu/stubs.h頭文件,
而這個頭文件在第7行引用了gnu/stubs-32.h頭文件
然后在編譯的過程中,沒有發現這個文件。大體意思清楚沒有。
下面是/usr/include/gnu/stubs.h文件的內容如下:
/* This file selects the right generated file of `__stub_FUNCTION' macros based on the architecture being compiled for. */ #include <bits/wordsize.h> #if __WORDSIZE == 32 # include <gnu/stubs-32.h> #elif __WORDSIZE == 64 # include <gnu/stubs-64.h> #els # error "unexpected value for __WORDSIZE macro" #endif ~
注明:這個文件說明了64位或者32位編譯環境選擇的頭文件。所以在編譯的過程中,
使用了-m2的參數就會鏈接到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系統上,執行上述指令安裝,在/usr/include/gnu目錄下確實生成了上述的文件。
在CentOS系統上,無效。
64位的機器上找不到32位的頭文件。所以要安裝glibc-devel.i686(redhat不同系統不太一樣)
隨手搜了一個rpm包,用rpm -ivh安裝報錯:(因為服務器不聯外網,所以這么安裝)
error:Failed dependencies
忽略依賴關系問題rpm –nodeps -i
即可安裝成功
cd /usr/include/gnu/下查看,文件stubs-32.h已經存在。解決問題。
下面是/usr/include/gnu/stubs.h文件的內容如下:
/* 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錯誤怎么辦”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。