radv: enable lowering of GS intrinsics for the LLVM backend
[mesa.git] / meson.build
index 45a760c7d02d580052684ffc3ddbf0dbd3fedb94..cb275e7dcc19adb7d63b5c1d00f7e049edb8dfef 100644 (file)
@@ -786,6 +786,9 @@ if with_platform_android
     dependency('hardware'),
     dependency('sync'),
   ]
+  if with_gallium
+    dep_android += dependency('backtrace')
+  endif
   if get_option('platform-sdk-version') >= 26
     dep_android += dependency('nativewindow')
   endif
@@ -935,7 +938,9 @@ if cc.get_id() == 'msvc'
                '/wd4996',  # disabled deprecated POSIX name warnings
                '/wd4291',  # no matching operator delete found
                '/wd4146',  # unary minus operator applied to unsigned type, result still unsigned
-               '/wd4200']  # nonstandard extension used: zero-sized array in struct/union
+               '/wd4200',  # nonstandard extension used: zero-sized array in struct/union
+               '/wd4624',  # destructor was implicitly defined as deleted [from LLVM]
+              ]
     if cc.has_argument(a)
       c_args += a
     endif