Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install C++11 C++0x header files on Redhat Enterprise

Tags:

c++

c++11

gnu

rhel

I moved my application to another Linux box, after compilation, it returns an error saying

#include <atomic> 

can not be resolved.

I guess the new GNU C++11 header files / libraries are not installed on new machine.

My question is how can I install them?

I am running on Redhat Enterprise, so yum install ?

Thanks.

like image 855
2607 Avatar asked Jan 17 '23 03:01

2607


1 Answers

The Red Hat Developer Toolset provides C++11 support.

(Indeed, I suspect this is the primary reason for its existence.)

like image 75
Nemo Avatar answered Jan 25 '23 22:01

Nemo