반응형
C++ 11 을 사용하기 위해서는 gcc 의 경우에는 -std=c++11를 넣어줘야 합니다.
CMake 를 이용할 경우 아래와 같이 사용할 수 있습니다.
SET(CMAKE_CXX_FLAGS "-std=c++0x")
- GCC: 4.5. You must specify the
-std=c++11
option. - Intel C++ Compiler: 11. Specify the
/Qstd=c++0x
option. - Microsoft Visual C++ 2010 (included in Visual Studio 2010).
'C++11,14 (modern C++)' 카테고리의 다른 글
effective modern c++: noexcept 선언 (0) | 2016.02.05 |
---|---|
effective modern c++: 명시적 형식 선언보다 auto 를 선호 하라. (3) | 2016.02.01 |
CPU architecture 구분을 위한 predefined macro 입니다. (0) | 2014.09.17 |
google c++ style guide line (0) | 2011.02.21 |
C/C++: Code Review 하는 방법 (0) | 2009.01.15 |