mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-26 20:38:59 +08:00
c482408411
* [llvm] update to 12.0.0, enable zlib and libxml2 * [llvm] disable libxml2 by default, arm64-windows should be supported * [llvm] try to fix build with ffi on Windows #17663 * [llvm] re-enable libxml2 * [llvm] fix formatting * [llvm] overwrite version * [mesa] update to v21.1.0 * [llvm] update ci.baseline * [halide] update to the latest master commit * [llvm] disable libxml2 port until complete PR #15390 * update versions * [llvm] fix disabling of external libraries * update version * update ci.baseline * update ci.baseline * fix typo * [llvm] fix libxml2 (depends on #17945) * revert "[halide] update to the latest master commit" * update versions * [halide] fix zlib dependency for tools * update versions * [halide] update to official release v12.0.0 * update versions * [halide] update to v12.0.1 * update version * [mesa] remove llvm from defaults * update version * update ci.baseline * [mesa] update to v21.1.2 and fix build with LLVM on Windows * [llvm] allow to build libunwind project on Windows * update versions * [mesa] update ci.baseline.txt to disable x64-windows-static-md, may be fixed in the PR #18495
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 11ea7d3f43e..f34e88b1eec 100644
|
|
--- a/src/gallium/drivers/swr/meson.build
|
|
+++ b/src/gallium/drivers/swr/meson.build
|
|
@@ -213,7 +213,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.')
|
|
@@ -252,7 +252,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.')
|