Commit 758bb552 by John Kessenich

Bison: Non-functional: Move to revision 3.0.4.

This hopefully prevents obsucuring actual changes in a future commit. Also, adds a script to update the grammar.
parent 952c2a05
...@@ -63,6 +63,12 @@ bison --defines=MachineIndependent/glslang_tab.cpp.h ...@@ -63,6 +63,12 @@ bison --defines=MachineIndependent/glslang_tab.cpp.h
-o MachineIndependent/glslang_tab.cpp -o MachineIndependent/glslang_tab.cpp
``` ```
The above command is also available in the bash script at:
```
glslang/updateGrammar
```
Glslang is adding the ability to test with Glslang is adding the ability to test with
[Google Test](https://github.com/google/googletest) framework. If you want to [Google Test](https://github.com/google/googletest) framework. If you want to
build and run those tests, please make sure you have a copy of Google Tests build and run those tests, please make sure you have a copy of Google Tests
......
This source diff could not be displayed because it is too large. You can view the blob instead.
#!/usr/bin/env bash
bison --defines=MachineIndependent/glslang_tab.cpp.h -t MachineIndependent/glslang.y -o MachineIndependent/glslang_tab.cpp
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment