From 3626398bdaf1a877ede5a183c0354beab0834a33 Mon Sep 17 00:00:00 2001 From: Bruno de Oliveira Abinader Date: Wed, 11 Sep 2019 16:28:53 +0300 Subject: fixup! vendor-update --- misc/buck/mapbox-gl-native/BUCK | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/misc/buck/mapbox-gl-native/BUCK b/misc/buck/mapbox-gl-native/BUCK index 0712385773..18f745e051 100644 --- a/misc/buck/mapbox-gl-native/BUCK +++ b/misc/buck/mapbox-gl-native/BUCK @@ -22,6 +22,14 @@ mbgl = dict( deps = [], ) +mbgl_vendor = dict( + name = dict( + compiler_flags = [], + ) +) + +mbgl_vendor['mapbox-base'].append('-fexceptions') + def mbgl_vendor_library(name): files = mbgl_load_file_lists('vendor/' + name) cxx_library( @@ -33,7 +41,7 @@ def mbgl_vendor_library(name): link_style = 'static', compiler_flags = [ "-Wno-tautological-unsigned-enum-zero-compare", - ], + ] + mbgl_vendor[name]['compiler_flags'], ) mbgl['deps'].append(':vendor-' + name) -- cgit v1.2.1