From 3f957e0e85fbf9d2639323cb54b449b77fd8cfd7 Mon Sep 17 00:00:00 2001 From: David Tolpin Date: Sat, 7 Nov 2015 21:54:58 +0200 Subject: [PATCH] added c++0x to avoid gnu c++ barking at me --- examples/mandelbrot.pxi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/mandelbrot.pxi b/examples/mandelbrot.pxi index 4258280d..e84a9fcc 100644 --- a/examples/mandelbrot.pxi +++ b/examples/mandelbrot.pxi @@ -8,7 +8,7 @@ [pixie.time :refer [time]])) (with-config {:library "SDL2" - :cxx-flags ["`sdl2-config --cflags`"] + :cxx-flags ["`sdl2-config --cflags`" "-std=c++0x"] :includes ["SDL.h"]} (defcfn SDL_Init)