File tree Expand file tree Collapse file tree 2 files changed +4
-18
lines changed Expand file tree Collapse file tree 2 files changed +4
-18
lines changed Original file line number Diff line number Diff line change 1
1
@ echo off
2
2
setlocal enabledelayedexpansion
3
3
4
- set LLVM_VERSION = 18.1.0rc4
5
- set LLVM2_VERSION = 18.1.0-rc4
6
- set MESA_VERSION = 24.0.2
4
+ set LLVM_VERSION = 18.1.1
5
+ set MESA_VERSION = 24.0.3
7
6
8
7
set PATH = %CD% \llvm\bin;%CD% \winflexbison;%PATH%
9
8
@@ -81,10 +80,10 @@ where /Q cl.exe || (
81
80
rem *** download sources ***
82
81
83
82
echo Downloading llvm
84
- curl -sfL https://github.com/llvm/llvm-project/releases/download/llvmorg-%LLVM2_VERSION % /llvm-%LLVM_VERSION% .src.tar.xz ^
83
+ curl -sfL https://github.com/llvm/llvm-project/releases/download/llvmorg-%LLVM_VERSION % /llvm-%LLVM_VERSION% .src.tar.xz ^
85
84
| %SZIP% x -bb0 -txz -si -so ^
86
85
| %SZIP% x -bb0 -ttar -si -aoa 1 > nul 2 > nul
87
- curl -sfL https://github.com/llvm/llvm-project/releases/download/llvmorg-%LLVM2_VERSION % /cmake-%LLVM_VERSION% .src.tar.xz ^
86
+ curl -sfL https://github.com/llvm/llvm-project/releases/download/llvmorg-%LLVM_VERSION % /cmake-%LLVM_VERSION% .src.tar.xz ^
88
87
| %SZIP% x -bb0 -txz -si -so ^
89
88
| %SZIP% x -bb0 -ttar -si -aoa 1 > nul 2 > nul
90
89
move llvm-%LLVM_VERSION% .src llvm.src
Original file line number Diff line number Diff line change @@ -50,19 +50,6 @@ index 9e8baa0..e04f98a 100644
50
50
51
51
struct lp_build_sampler_soa *
52
52
lp_llvm_sampler_soa_create(const struct lp_sampler_static_state *static_state,
53
- diff --git src/gallium/frontends/wgl/stw_device.c src/gallium/frontends/wgl/stw_device.c
54
- index 2db745f..b1ab22b 100644
55
- --- src/gallium/frontends/wgl/stw_device.c
56
- +++ src/gallium/frontends/wgl/stw_device.c
57
- @@ -253,7 +253,7 @@ stw_cleanup(void)
58
- st_screen_destroy(stw_dev->fscreen);
59
- FREE(stw_dev->fscreen);
60
-
61
- - stw_dev->screen->destroy(stw_dev->screen);
62
- + if (stw_dev->screen) stw_dev->screen->destroy(stw_dev->screen);
63
-
64
- stw_tls_cleanup();
65
-
66
53
diff --git src/gallium/targets/libgl-gdi/meson.build src/gallium/targets/libgl-gdi/meson.build
67
54
index 7e1b87b..92f786a 100644
68
55
--- src/gallium/targets/libgl-gdi/meson.build
You can’t perform that action at this time.
0 commit comments