Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What pastebin that is capable of compiling & executing Standard C++11 code is most conformant to the new Standard? Do any use GCC 4.6.1?

I am composing an email for my workplace that illustrates some of the new features & functionality in C++11, and I'd like to include links to a pastebin that is capable of executing simple C++11 code.

I have been using ideone.com, but since ideone.com currently is using GCC 4.5.1 rather than 4.6.x the C++11 support is somewhat lacking.

For example, this code will not compile on ideone.com (link) because GCC 4.5.1 doesn't understand nullptr:

/*************************************
Simple demo of C++ nullptr
John Dibling
*************************************/

#include <cstdlib>
#include <cstddef>
#include <iostream>
using namespace std;

void foo(int)
{
    cout << "int version called\n";
}

void foo(char*)
{
    cout << "Pointer version called\n";
}

int main()
{
    foo(0);
    foo(nullptr);
}
share|improve this question
I initially linked to Comeau's try-it-out page in an answer, but nuked it because I just realised that it won't execute your code, just compile it. – Chris Jester-Young Oct 12 '11 at 15:42
I see your deleted post. Interestingly, it also won't even compile my code. – John Dibling Oct 12 '11 at 15:43
1  
There is nothing more compliant, but often ideone.com people upgrade the compiler if you kindly ask them and explain useful reasons. though from 4.5 to 4.6 there is no big jump, you should maybe wait for 4.7 with nsdmi support. – PlasmaHH Oct 12 '11 at 15:44
2  
4.5 to 4.6 is a huge jump! constexpr and nullptr. Admittedly nullptr can be perfectly emulated so its not such a big deal, but constexpr changes a lot. – deft_code Oct 12 '11 at 15:47
4  
I have emailed ideone.com and asked them to upgrade to GCC 4.6.1. – John Dibling Oct 13 '11 at 11:34
show 4 more comments

closed as not constructive by Nicol Bolas, Bo Persson, 0x499602D2, hjpotter92, Graviton Feb 4 at 2:19

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

5 Answers

up vote 8 down vote accepted

Ideone does! It has been just upgraded to gcc-4.7.2

share|improve this answer
How do you pass -std=c++11 to the compiler? – trojanfoe Mar 19 at 15:09
1  
@trojanfoe select C++11 as the language on the left – boycy Apr 3 at 21:28
1  
@boycy thanks; I didn't see that. – trojanfoe Apr 3 at 22:54

LiveWorkSpace seems to be working: http://liveworkspace.org/code/dc90329e0ea013ee9610328fc105871a

It uses g++-4.7.2, not old 4.5.x like ideone.

share|improve this answer
Not any more and we don't know why! – template boy Nov 24 '12 at 13:37
It seems that whole liveworkspace doesn't work :-( – Pawel Zubrycki Nov 24 '12 at 22:30
1  
LWS seems to be back up again – Mooing Duck Jan 30 at 18:17

stacked-crooked.com uses GCC 4.8 and has support for boost and Poco.

share|improve this answer

Well... I did a quick google search for "C++ pastebin servewrs" and found pastebin-server.py. That gave me an idea: What do you think about an integration with trac in the Wiki? I think I could manage to write a Processor that could compile code at least and present the compiler output. Hmmm.... That is almost trivial that I think someone must have done that before.

share|improve this answer

This person uses C++11 (aka C++0x) and executes it with gcc 4.6.1, describing the use of flags needed:

to compile with g++, use compilation flag -std=gnu++0x

He also describes the versions available for his code (in which he displays some of the differences of the two standards):

Requires at least GCC 4.4 for

  • auto keyword
  • initializer lists

Requires at least GCC 4.6 for

  • range-based for
share|improve this answer
1  
-1: Not what the question asked for! – Lightness Races in Orbit Jan 6 at 15:30
Stopped reading at "-std=gnu++0x". – Griwes Jan 30 at 18:20

Not the answer you're looking for? Browse other questions tagged or ask your own question.