Skip to content

Commit ce5fd43

Browse files
authored
Support for getting git version from IGlobalSession (shader-slang#1040)
* Added slang-tag-version.h and travis code to generate the file. * Generate slang-tag-version.h on appveyor. * Move where slang-tag-version.h is generated on appveyor. * Dump slang-tag-version.h to console on travis. * Cat slang-tag-version.h * Added method getBuildTagVersion to IGlobalSession. Added -v option.
1 parent fecfb36 commit ce5fd43

9 files changed

+33
-2
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ before_deploy: |
4646
export SLANG_ARCH_NAME=`uname -p`
4747
export SLANG_TAG=${TRAVIS_TAG#v}
4848
export SLANG_BINARY_ARCHIVE=slang-${SLANG_TAG}-${SLANG_OS_NAME}-${SLANG_ARCH_NAME}.zip
49-
zip -r ${SLANG_BINARY_ARCHIVE} bin/*/*/slangc bin/*/*/libslang.so bin/*/*/libslang-glslang.so docs/*.md README.md LICENSE slang.h slang-com-helper.h slang-com-ptr.h prelude/*.h
49+
zip -r ${SLANG_BINARY_ARCHIVE} bin/*/*/slangc bin/*/*/libslang.so bin/*/*/libslang-glslang.so docs/*.md README.md LICENSE slang.h slang-com-helper.h slang-com-ptr.h slang-tag-version.h prelude/*.h
5050
5151
# We are going to deploy to GitHub Releases
5252
# on a successful build from a tag, but only

appveyor.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,12 @@ init:
1212
{
1313
$env:SLANG_VERSION = "dev-$($env:APPVEYOR_REPO_COMMIT.Substring(0, 7))"
1414
}
15-
15+
1616
# The project uses a submodule for the "glslang" dependency,
1717
# so we need to make sure to pull that before building.
1818
install:
1919
- git submodule update --init --recursive
20+
- ps: git describe --tags | %{$_ -replace "^", "#define SLANG_TAG_VERSION """ -replace "$", """"} > slang-tag-version.h
2021

2122
# We want to build the full matrix of platforms and configurations
2223
# that we support on Windows.
@@ -85,6 +86,7 @@ after_build:
8586
7z a "$env:SLANG_BINARY_ARCHIVE" slang.h
8687
7z a "$env:SLANG_BINARY_ARCHIVE" slang-com-helper.h
8788
7z a "$env:SLANG_BINARY_ARCHIVE" slang-com-ptr.h
89+
7z a "$env:SLANG_BINARY_ARCHIVE" slang-tag-version.h
8890
7z a "$env:SLANG_BINARY_ARCHIVE" prelude\*.h
8991
7z a "$env:SLANG_BINARY_ARCHIVE" bin\*\*\slang.dll
9092
7z a "$env:SLANG_BINARY_ARCHIVE" bin\*\*\slang.lib
@@ -97,6 +99,7 @@ after_build:
9799
7z a "$env:SLANG_SOURCE_ARCHIVE" slang.h
98100
7z a "$env:SLANG_SOURCE_ARCHIVE" slang-com-helper.h
99101
7z a "$env:SLANG_SOURCE_ARCHIVE" slang-com-ptr.h
102+
7z a "$env:SLANG_SOURCE_ARCHIVE" slang-tag-version.h
100103
7z a "$env:SLANG_SOURCE_ARCHIVE" prelude\*.h
101104
7z a "$env:SLANG_SOURCE_ARCHIVE" source\*\*.h
102105
7z a "$env:SLANG_SOURCE_ARCHIVE" source\*\*.cpp

docs/command-line-slangc.md

+2
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,8 @@ Options
8080

8181
For completeness, here are the options that `slangc` currently accepts:
8282

83+
* `-v`: Displays the build version. This is the contents of `git describe --tags`. It is typically only set from automated builds (such as distros available on github). A user build will by default be 'unknown'.
84+
8385
* `-D <name>[=<value>]`: Insert a preprocessor macro definition
8486
* The space between `-D` and `<name>` is optional
8587
* If no `<value>` is specified, Slang will define the macro with an empty value

slang-tag-version.h

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#define SLANG_TAG_VERSION "unknown"

slang.h

+9
Original file line numberDiff line numberDiff line change
@@ -2669,6 +2669,15 @@ namespace slang
26692669
virtual SLANG_NO_THROW void SLANG_MCALL setDownstreamCompilerPrelude(
26702670
SlangPassThrough passThrough,
26712671
const char* preludeText) = 0;
2672+
2673+
/** Get the build version 'tag' string. The string is the same as produced via `git describe --tags`
2674+
for the project. If Slang is built separately from the automated build scripts
2675+
the contents will by default be 'unknown'. Any string can be set by changing the
2676+
contents of 'slang-tag-version.h' file and recompiling the project.
2677+
2678+
@return The build tag string
2679+
*/
2680+
virtual SLANG_NO_THROW const char* SLANG_MCALL getBuildTagString() = 0;
26722681
};
26732682

26742683
#define SLANG_UUID_IGlobalSession { 0xc140b5fd, 0xc78, 0x452e, { 0xba, 0x7c, 0x1a, 0x1e, 0x70, 0xc7, 0xf7, 0x1c } };

source/slang/slang-compiler.h

+2
Original file line numberDiff line numberDiff line change
@@ -1807,6 +1807,8 @@ namespace Slang
18071807
SlangPassThrough inPassThrough,
18081808
char const* prelude) override;
18091809

1810+
SLANG_NO_THROW const char* SLANG_MCALL getBuildTagString() override;
1811+
18101812
enum class SharedLibraryFuncType
18111813
{
18121814
Glslang_Compile,

source/slang/slang-options.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -800,6 +800,10 @@ struct OptionsParser
800800
return SLANG_FAIL;
801801
}
802802
}
803+
else if (argStr == "-v")
804+
{
805+
sink->diagnoseRaw(Severity::Note, session->getBuildTagString());
806+
}
803807
else if (argStr == "--")
804808
{
805809
// The `--` option causes us to stop trying to parse options,

source/slang/slang.cpp

+6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#include "../../slang.h"
2+
#include "../../slang-tag-version.h"
23

34
#include "../core/slang-io.h"
45
#include "../core/slang-string-util.h"
@@ -201,6 +202,11 @@ SLANG_NO_THROW void SLANG_MCALL Session::setDownstreamCompilerPrelude(
201202
m_downstreamCompilerPreludes[int(passThrough)] = prelude;
202203
}
203204

205+
SLANG_NO_THROW const char* SLANG_MCALL Session::getBuildTagString()
206+
{
207+
return SLANG_TAG_VERSION;
208+
}
209+
204210
struct IncludeHandlerImpl : IncludeHandler
205211
{
206212
Linkage* linkage;

travis_build.sh

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
wget https://github.com/shader-slang/slang-binaries/blob/master/premake/premake-5.0.0-alpha13/bin/linux-64/premake5?raw=true -O premake5
55
chmod u+x premake5
66

7+
# generate slang-tag-version.h
8+
git describe --tags | sed -e "s/\(.*\)/\#define SLANG_TAG_VERSION \"\1\"/" > slang-tag-version.h
9+
cat slang-tag-version.h
10+
711
# Create the makefile
812
./premake5 gmake --cc=${CC}
913

0 commit comments

Comments
 (0)