diff options
author | Dylan Baker <[email protected]> | 2017-09-30 20:04:09 -0700 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2017-10-03 10:02:04 -0700 |
commit | 052c0d5edacf377a4b36cc9fee2945f8a9b38787 (patch) | |
tree | a96a8ccb2a0af2abc8b21fa81cd1680a59530828 /meson.build | |
parent | af867d72c60a6749fecd06f97094ed6a7e61e033 (diff) |
meson: set C++ standard to C++11
RadeonSI requires C++11, clover requires C++11, LLVM requires it, so
llvmpipe may require it, and that covers most of the C++ code in mesa.
Signed-off-by: Dylan Baker <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index b1bd73691ee..5de64acefd6 100644 --- a/meson.build +++ b/meson.build @@ -19,7 +19,7 @@ # SOFTWARE. project('mesa', ['c', 'cpp'], version : '17.3.0-devel', license : 'MIT', - default_options : ['c_std=c99']) + default_options : ['c_std=c99', 'cpp_std=c++11']) with_dri3 = true # XXX: need a switch for this with_vulkan_icd_dir = get_option('vulkan-icd-dir') |