From 5e9f5c6fefdd3c735d70826701f961f4d9b55085 Mon Sep 17 00:00:00 2001 From: Michael Wu Date: Thu, 11 Dec 2014 12:33:24 -0500 Subject: [PATCH] Fix gonk build Gonk uses stlport, which disables long long support when --std=c++11 is used. long long support is necessary for Logging.h. --- makefile.cargo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile.cargo b/makefile.cargo index 817cc11..0b32992 100644 --- a/makefile.cargo +++ b/makefile.cargo @@ -36,7 +36,7 @@ AZURE_CPP_SRC = \ libazure/SourceSurfaceSkia.cpp CXXFLAGS += \ - -std=c++11 \ + -std=gnu++11 \ -fPIC \ -Ilibazure \ -DMOZ_GFX \