Skip to content

Commit

Permalink
Release 17.3.4.501-1
Browse files Browse the repository at this point in the history
Debug script: Backup old llvm-config output.
  • Loading branch information
pal1000 committed Feb 16, 2018
1 parent c04121e commit ad1a6ba
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 24 deletions.
6 changes: 3 additions & 3 deletions buildscript/build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -130,11 +130,11 @@
@if /i NOT "%buildmesa%"=="y" GOTO exit
@echo.
@cd %mesa%\mesa
@set openswr=n
@set swrdrv=n
@set sconscmd=python %sconsloc% build=release platform=windows machine=%longabi% libgl-gdi
@if %abi%==x64 set /p openswr=Do you want to build OpenSWR drivers? (y=yes):
@if %abi%==x64 set /p swrdrv=Do you want to build swr drivers? (y=yes):
@echo.
@if /I "%openswr%"=="y" set sconscmd=%sconscmd% swr=1
@if /I "%swrdrv%"=="y" set sconscmd=%sconscmd% swr=1
@set /p osmesa=Do you want to build off-screen rendering drivers (y/n):
@echo.
@if /I "%osmesa%"=="y" set sconscmd=%sconscmd% osmesa
Expand Down
18 changes: 15 additions & 3 deletions debug/llvm-config.cmd
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
@cd ../../llvm
@if EXIST llvm-config-old.txt del llvm-config-old.txt
@if EXIST llvm-config.txt REN llvm-config.txt llvm-config-old.txt
@cd ../../
@IF NOT EXIST llvm GOTO error
@cd llvm
@if EXIST x64 (
@cd x64
@GOTO writedebugoutput
Expand All @@ -7,11 +11,19 @@
@cd x86
@GOTO writedebugoutput
)
@GOTO error

:writedebugoutput
@IF EXIST bin (
@cd bin
@del "..\..\..\mesa-dist-win\debug\llvm-config.txt"
@llvm-config --libs engine mcjit bitwriter x86asmprinter irreader > "..\..\..\mesa-dist-win\debug\llvm-config.txt"
@echo LLVM config output updated
@echo LLVM config output updated.
@GOTO finished
)

:error
@echo LLVM is not built yet. Cannot determine required libraries for requested configuration.

:finished
@pause
@exit
2 changes: 1 addition & 1 deletion mesa3d.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "Mesa3D software rendering drivers for Windows"
#define MyAppVersion "17.3.3.501-1"
#define MyAppVersion "17.3.4.501-1"
#define MyAppPublisher "Pal100x"
#define MyAppURL "https://github.com/pal1000/mesa-dist-win"
#define MyAppExeName "mesa-{#MyAppVersion}-setup.exe"
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
- [Manual OpenGL context configuration](#manual-opengl-context-configuration)

# Downloads
Mesa 17.3.3 builds are now available in [releases section](https://github.com/pal1000/mesa-dist-win/releases)
Mesa 17.3.4 builds are now available in [releases section](https://github.com/pal1000/mesa-dist-win/releases)

# Package contents
The following Mesa3D drivers are shipped in each release:
Expand Down
16 changes: 0 additions & 16 deletions relnotes.md

This file was deleted.

0 comments on commit ad1a6ba

Please sign in to comment.