錯誤:unrecognized command line option “-std=c++11”
錯誤:unrecognized command line option “-std=c++11”
在出現上述錯誤時,可能是 由於gcc和g++的版本不夠高。所以升級gcc和g++版本。
新增下載源:
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
安裝4.8
sudo apt-get install gcc-
4.8
檢視本地版本
ls -lh /usr/bin/g++*
可以看到本機安裝了
4.6
和
4.8
兩個版本
再執行下面來切換預設的版本為4.8
sudo rm /usr/bin/g++ sudo ln-s /usr/bin/g++-4.8 /usr/bin/g++
相關推薦
錯誤:unrecognized command line option “-std=c++11”
錯誤:unrecognized command line option “-std=c++11” 在出現上述錯誤時,可能是 由於gcc和g++的版本不夠高。所以升級gcc和g++版本。 新增下載源: sudo add-apt-repository ppa:ubuntu-toolcha
Linux下C++編譯提示錯誤:unrecognized command line option “-std=c++11”
也就是gcc,g++版本不夠,那就升級版本 預設ubuntu14的gcc版本是4.8,支援c++11, 不支援c++14 gcc --version g++ --version 安裝g++5 sudo
unrecognized command line option ‘-std=c++11’
轉自:http://blog.csdn.net/gqb1226/article/details/43967723 出現的錯誤入下圖所示: 簡單百度下就能知道錯誤是 g++ gcc 版本不夠高。那麼解決方案就是升級版本。 主要步驟是參考部落格:http://blog.csdn.net/joeblackzq
解決安裝vcredist_x86 C++出現的錯誤問題Command line option syntax error. Type Command
今天安裝WindowsforLua時 出了點小問題 Lua 提示網路失敗 ,原因 其實就是沒有裝 x86的vcredist_x https://www.microsoft.com/zh-cn/download/details.aspx?id=5638 這是下載地址
錯誤:cc1: error: unrecognized command line option “-m32”
作業系統:RHEL5.1-Server 編譯器:gcc 4.1.2 工程:x264-snapshot-20120817-2245 問題:在編譯安裝 x264 時出現下列錯誤 解決方案:找到工程中Makefile檔案,將其中 “-m32" 字串刪除即可。 原因:
關於初次搭建環境切換老版本出現錯誤gcc: error: unrecognized command line option ‘-mthumb’的解決方案
虛擬機器安裝ubuntu 16.04,這應該是一個很基本的問題,但是礙於本人是小白,折騰好久都不得要領,先記錄如下,希望能幫到其他人 按照官網步驟搭建環境PX4編譯環境,在編譯1.6.0及其以上版本
cc1 error unrecognized command line option -m64 需要新增上ARC
分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!http://blog.csdn.net/jiangjunshow 也歡迎大家轉載本篇文章。分享知識,造福人民,實現我們中華民族偉大復興!  
編譯出現 error: unrecognized command line option "-fconserve-stack"
make[1]: `include/generated/mach-types.h' is up to date. CALL scripts/checksyscalls.sh CHK include/generated/compile.h
armv8、aarch64的架構:unrecognized command line option '-mfpu=neon'
arc lists sta blank zed 啟動 nbsp list htm 不用添加這個‘-mfpu=neon‘的編譯器選項了,因為這個架構下neon是默認啟動的。 參考: https://lists.linaro.org/pipermail/linaro-
cc1: error: unrecognized command line option "-m64"
ld: /home/aa/Desktop/learn/completion/completion/complete.o: Relocations in generic ELF (EM: 40) ld: /home/aa/Desktop/learn/completion/completion/complete.
xtrabackup 1.6.3安裝出現cc1: error: unrecognized command line option "-fdiagnostics-show-option"
今天沒事,就重新下了一個xtrabackup 1.6.3來玩一下,公司用這個工具不多,在這個版本安裝時出現一個問題 首先這個版本必須要下載 libtar-1.2.11.tar.gz和 mysql-5.1.56.tar.gz 按說明一次下載兩個版本到/home/zha
xmind - C:\Users\xxx\Application Data could not be created '-configuration' command line option.
The configuration area at'C:\Users\xxx\Application Data\XMind\configuration-cathy win32-R3.7.8.201807240049' could not be created. Please choose a wri
python安裝第三方庫提示cc1plus: warning: command line option “-Wstrict-prototypes” is valid for C/ObjC ....
py2安裝pyltp的時候一直卡著不動,使用-v引數檢視安裝過程,發現一直提示:cc1plus: warning: command line option “-Wstrict-prototypes” is valid for Ada/C/ObjC but not for C++。py3安裝pyl
C:\Users\xxx\Application Data could not be created '-configuration' command line option.
The configuration area at'C:\Users\xxx\Application Data\XMind\configuration-cathy win32-R3.7.8.201807240049' could not be created. Please
centos升級gcc到4.8.2(cc1plus: 錯誤:無法識別的命令列選項“-std=c++11”)
驗證:gcc -v;或者g++ -v,如果顯示的gcc版本仍是以前的版本,就需要重啟系統;或者可以檢視gcc的安裝位置:which gcc;然後在檢視版本 /usr/local/bin/gcc -v,通常gcc都安裝在該處位置
升級 gcc g++ 版本 支援-std=c++11 特性
CentOS 6.6 升級GCC G++ (當前最新GCC/G++版本為v6.1.0) 或者 新增yum 的 repo 檔案 也不行, 只能更新到 4.4.7! 採取手動編譯安裝了 1、 獲取安裝包並解壓 wget http://ftp.gnu.org/gnu/g
一個關於-std=c++11還是c++14的小問題
今天學C++11看到了shared_ptr,準備寫一些測試程式碼來學習一下。 makefile寫好了,很簡單: #sample makefile CC := g++ CXXFLAGS := -g
如何寫cmake使其包含c++11特性 (-std=c++11如何寫進cmakeList.txt)
g++ 4.8.2 cmake 2.8 之前寫cmkae編譯帶有c++11特性的程式碼有這麼一句: set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11") 但是總會出現cc1plus: error: unrecognized
關於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
使用NDK編譯並執行C++11的Command line命令列程式
用C++11寫了一個併發的類,使用了lock-free的演算法。需要在跨平臺(PC、android)執行一個測試程式,測試在不同CPU上是否穩定。 在android上,涉及到如何使用NDK編譯和執行命令列程式以及如何使用NDK編譯支援C++11的程式這兩個問題。 以下使用a