mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 16:29:07 +08:00
9c63f97fa1
* [mesa] new port * make mesa build more. * more fine tuning * fix x86 * add supports. * comment about EGL feature. * apply suggestion from CR. added opengl feature. error on disabled shared glapi if multiple GL APIs are selected. * fix boolean option * make sharedgl-api=true the hardcoded default * add suggestion from CR * add mesa:x64-windows-static=fail to ci.baseline.txt due to static crt and parts being a dynamic library. * apply CR sugesstion Co-authored-by: PhoebeHui <20694052+PhoebeHui@users.noreply.github.com>
23 lines
905 B
Diff
23 lines
905 B
Diff
diff --git a/src/gallium/drivers/swr/meson.build b/src/gallium/drivers/swr/meson.build
|
|
index 2fad60365a3..dce7f656d64 100644
|
|
--- a/src/gallium/drivers/swr/meson.build
|
|
+++ b/src/gallium/drivers/swr/meson.build
|
|
@@ -249,7 +249,7 @@ endif
|
|
|
|
if with_swr_arches.contains('knl')
|
|
swr_knl_args = cpp.first_supported_argument(
|
|
- '-march=knl', '-target-cpu=mic-knl', '-xMIC-AVX512',
|
|
+ '-march=knl', '-target-cpu=mic-knl', '-xMIC-AVX512', '/arch:AVX512',
|
|
)
|
|
if swr_knl_args == []
|
|
error('Cannot find KNL support for swr.')
|
|
@@ -274,7 +274,7 @@ endif
|
|
|
|
if with_swr_arches.contains('skx')
|
|
swr_skx_args = cpp.first_supported_argument(
|
|
- '-march=skylake-avx512', '-target-cpu=x86-skylake', '-xCORE-AVX512',
|
|
+ '-march=skylake-avx512', '-target-cpu=x86-skylake', '-xCORE-AVX512', '/arch:AVX512',
|
|
)
|
|
if swr_skx_args == []
|
|
error('Cannot find SKX support for swr.')
|