Build dependency: Please install the GNU C Compiler (gcc) 4.8
新版本openwrt編譯時檢查版本不匹配問題導致,解決方法:安裝一個新版本的gcc
一、簡易安裝 操作環境 Red-hat 6.2 64bit,yum安裝自帶版本4.4.7,不能支援C++11的特性,需要升級到4.8.2。
1.1 獲取安裝包並解壓
wget http://ftp.gnu.org/gnu/gcc/gcc-4.8.2/gcc-4.8.2.tar.bz2
tar -jxvf gcc-4.8.2.tar.bz2
- 1.2 下載供編譯需求的依賴項
參考文獻[1]中說:這個神奇的指令碼檔案會幫我們下載、配置、安裝依賴庫,可以節約我們大量的時間和精力。
cd gcc-4.8.2 ./contrib/download_prerequisites
- 1.3 建立一個目錄供編譯出的檔案存放
mkdir gcc-build-4.8.2
cd gcc-build-4.8.2
- 1.4 生成Makefile檔案
../configure -enable-checking=release -enable-languages=c,c++ -disable-multilib
- 1.5 編譯(注意:此步驟非常耗時)
make -j4
- -j4選項是make對多核處理器的優化。
1.6、安裝
sudo make install
相關推薦
Build dependency: Please install the GNU C Compiler (gcc) 4.8
新版本openwrt編譯時檢查版本不匹配問題導致,解決方法:安裝一個新版本的gcc 一、簡易安裝 操作環境 Red-hat 6.2 64bit,yum安裝自帶版本4.4.7,不能支援C++11的特性,需要升級到4.8.2。 1.1 獲取安裝包並解壓 wget http:
Ubuntu編譯OpenWRT 15.05提示"Build dependency:Please install the xxx"
在Ubuntu 18.04.1上編譯OpenWrt Chaos Calmer的時候碰到了以下問題,記錄一下。 Build dependency: Please install the GNU C Compiler (gcc) Build dependenc
No module named _tkinter, please install the python-tk package 解決方法總結
not 原因 sin 程序開發 找到 pytho iss 配置 重新 0. 前言 在ipython環境中,要用到matlotlib庫,運行.py文件時,提示以下錯誤: No module named _tkinter, please install the py
如何處理錯誤消息Please install the Linux kernel header files
ogr res not class 技術分享 src finished bfc 解決 Please install the Linux kernel "header" files matching the current kernel 當我啟動minilkube時遇到如下錯
Python import matplotlb.pyplot報錯:ImportError: No module named '_tkinter', please install the python3
Python import matplotlb.pyplot報錯:ImportError: No module named ‘_tkinter’, please install the python3 本文記錄了博主在遇到這個大坑以後重新登入Python中遇到的import matp
如何處理錯誤訊息Please install the Linux kernel header files
Please install the Linux kernel "header" files matching the current kernel 當我啟動minilkube時遇到如下錯誤訊息: Minikube setup with driver virtualbox Starting
如何處理錯誤訊息Please install the gcc make perl packages
如何處理這行錯誤訊息? Please install the gcc make perl packages from your distribution。 執行命令列:yum install gcc perl make 輸出: Loaded plugins: product-id, sea
FATAL ERROR: please install the following Perl modules before executing ./scripts/mysql_install_db:
執行安裝mysql 報錯 [[email protected] mysql-mult]# ./scripts/mysql_install_db --defaults-file=conf/3306my.cnf FATAL ERROR: please install t
問題:(機器學習)ImportError: No module named '_tkinter', please install the python3-tk package
在機器學習的過程中遇到問題: 安裝 sudo apt install python3-tk (Ubuntu) yum install python3-tk (Centos) 測試 如果沒奏效,繼續下一步 sudo apt install tk-dev (Ubuntu/Deb
FATAL ERROR: please install the following Perl modules before executing ./mysql_install_db: Data::Dumper
今天安裝本地資料庫,所遇到的錯誤 FATAL ERROR: please install the following Perl modules before executing ./mysql_install_db:Data::Dumper 看到網上的修改方法: 解決方法 :安裝autoconf庫
make menuconfig提示Build dependency: Please do not compile as root.解決辦法
修改prereq-build.mk檔案: 輸入命令 vi include/prereq-build.mk 然後註釋這句程式碼 [ "$$(shell whoami)" != "root" ] 然後執行make menuconfig即可。
ImportError: No module named '_tkinter', please install the python3-tk package
解決: 進入專案所在的虛擬環境中,安裝python3-tk包 cd /home/dorothy/ZX/myproject/p3/bin source ./active #進入虛擬環境 sudo ap
安裝mysql提示 please install the .Net framework
在windows下安裝新版MySQL5.7資料庫的時候,提示需要安裝.net framework 4.0,如下圖, 這是因為新版MySQL提供了.net的ado.net搜尋等功能,需要使用微軟的.
Please install the Android Support Repository from the Android SDK Manager
最近拉取專案報了這麼個錯錯誤截圖原因分析沒有找到對應依賴的26.0.0,讓我們下載,按照提示開啟發現並沒有缺少Repository,並沒有什麼需要下載的。旁邊大佬說可能是各自的開發工具裡面的SDK有差距導致的;百度了下,發現,從api 26開始,support librari
CentOS6.8中安裝Nginx時出現 C compiler gcc is not found問題
已經按照好gcc之後還是會顯示 C compiler gcc is not found問題,嘗試了網上很多安裝gcc的方法都不可用。 1.原因分析: configure首先會編譯一個小測試程式,通過測試其執行結果來判斷編譯器是否能正常工作,由於交叉編譯器所編譯出的程式是無法在編譯主機上執
linux下安裝或升級GCC 4.8,以支援C++11標準
C++11標準在2011年8月份獲得一致通過,這是自1998年後C++語言第一次大修訂,對C++語言進行了改進和擴充。隨後各編譯器廠商都各自實現或部分實現了C++中的特性 。 如需檢視各編譯器對C++11的支援程度,請參看文章: 轉自:http://www.d
ubuntu 14.04 install g++ 問題"g++ : Depends: g++-4.8 (>= 4.8.2-5~) but it is not going to be installe"
Ubuntu 14.04通過 sudo apt-get install g++ 出現“g++ : Depends: g++-4.8 (>= 4.8.2-5~) but it is not going to be installed”錯誤, 是因為ubuntu 14.
linux下安裝或升級GCC 4.8以上版本(包括),以支援C++11
本文轉載自:http://www.cnblogs.com/lizhenghn/p/3550996.html C++11標準在2011年8月份獲得一致通過,這是自1998年後C++語言第一次大修訂,對C++語言進行了改進和擴充。隨後各編譯器廠商都各自實現或部分實現了
關於make提示must be enabled with the -std=c++11 or -std=gnu++11 compiler options
在make後,出現錯誤,提示如下: /usr/include/c++/4.8/bits/c++0x_warning.h:32:2: error: #error This file requires compiler and library support for the
A C compiler that parses this code will contain at least the following symbol table entries
media win expr res parse cti span follow declare A C compiler that parses this code will contain at least the following symbol table entr