CodeBlocks问题解决

简介: 问题一:使用unordered_map错误问题描述包含头文件#include <unordered_map>后编译器报错,错误信息为: This file requires compiler and library support for the \ISO C++ 2011 standard. This support is currently e

问题一:使用unordered_map错误

问题描述

包含头文件#include <unordered_map>后编译器报错,错误信息为:

This file requires compiler and library support for the \ISO C++ 2011 standard. This support is currently experimental, and must be \enabled with the -std=c++11 or -std=gnu++11 compiler options.

该错误来自文件:c++0x_warning.h中的

#ifndef _CXX0X_WARNING_H
#define _CXX0X_WARNING_H 1

#if __cplusplus < 201103L
#error This file requires compiler and library support for the \
ISO C++ 2011 standard. This support is currently experimental, and must be \
enabled with the -std=c++11 or -std=gnu++11 compiler options.
#endif

#endif

解决方案

点击Settings-Compiler,弹出如下窗口:
Compiler settings
勾选上上图红色方框中的任意一项。

问题二:智能缩进

问题描述

Ubuntu14.04下,codeblocks勾选上smartindent之后只能缩进仍然不可用

解决方案

  • sudo apt-get install codeblocks-contrib
  • 重启codeblocks
目录
相关文章
|
Windows
zlib、libzip、 libzippp 库编译(windows + cmake + vs2013)
"libzipp" 这库是基于 "libzip" 之上封装的,而 "libzip" 又是基于 "zlib"库封装的,所以要编译 "libzipp" 库就要先编译其他两个库。下载准备:"zlib-1.2.
3789 0
|
5月前
|
C语言 C++
CLion2022安装与使用
CLion2022安装与使用
123 0
CLion2022安装与使用
|
6月前
Clion-2023.1.4配置CMake-3.25.3
Clion-2023.1.4配置CMake-3.25.3
|
7月前
|
编译器 测试技术 C语言
vscode+CMakeLists+mingw配置Opencv4.5.5
vscode+CMakeLists+mingw配置Opencv4.5.5
411 0
|
机器学习/深度学习 C语言 数据安全/隐私保护
windows下安装MinGW、swig 、zlib
windows下安装MinGW、swig 、zlib
562 0
|
Ubuntu Linux C语言
MSYS2介绍
MSYS2介绍
556 0
|
IDE Unix 编译器
MinGW与Clion下载安装及使用详解
MinGW与Clion下载安装及使用详解
MinGW与Clion下载安装及使用详解
|
Linux
LINUX编译cmake
LINUX编译cmake
100 0
|
Ubuntu 网络协议 JavaScript
KiCad 安装
Windows 安装 KiCad Linux 安装 KiCad MacOS 安装 KiCad
839 0
KiCad 安装
|
算法 C语言 C++
Clion安装
JetBrains C++ IDE CLion配置 windows 就是坑 最近在学数据结构与算法,但是教程上用的是c++,所以不得不安装个好用的IDE,因为我用过Intelij IDEA和AndroidStudio,所以选择了Clion,其实他们都同属一个JetBrains系统的。
2581 0