Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
glslang
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
glslang
Commits
817d0f63
Commit
817d0f63
authored
Mar 23, 2020
by
Kai Ninomiya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update README
parent
16bb8881
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
11 deletions
+13
-11
README.md
README.md
+13
-11
No files found.
README.md
View file @
817d0f63
...
...
@@ -209,27 +209,29 @@ With no arguments it builds the full grammar, and with a "web" argument,
the web grammar subset (see more about the web subset in the next section).
### Building to WASM for the Web and Node
### Building a standalone JS/WASM library for the Web and Node
Use the steps in
[
Build Steps
](
#build-steps
)
, with the following notes/exceptions:
*
For building the web subset of core glslang:
+
execute
`updateGrammar web`
from the glslang subdirectory
(or if using your own scripts,
`m4`
needs a
`-DGLSLANG_WEB`
argument)
+
set
`-DENABLE_HLSL=OFF -DBUILD_TESTING=OFF -DENABLE_OPT=OFF -DINSTALL_GTEST=OFF`
+
turn on
`-DENABLE_GLSLANG_JS=ON`
+
optionally, for a minimum-size binary, turn on
`-DENABLE_GLSLANG_WEBMIN=ON`
+
optionally, for GLSL compilation error messages, turn on
`-DENABLE_GLSLANG_WEB_DEVEL=ON`
*
`emsdk`
needs to be present in your executable search path,
*PATH*
for
Bash-like environments
+
[
Instructions located
here](https://emscripten.org/docs/getting_started/downloads.html#sdk-download-and-install)
Bash-like environments:
+
[
Instructions located here
](
https://emscripten.org/docs/getting_started/downloads.html#sdk-download-and-install
)
*
Wrap cmake call:
`emcmake cmake`
*
Set
`-DBUILD_TESTING=OFF -DENABLE_OPT=OFF -DINSTALL_GTEST=OFF`
.
*
Set
`-DENABLE_HLSL=OFF`
if HLSL is not needed.
*
For a standalone JS/WASM library, turn on
`-DENABLE_GLSLANG_JS=ON`
.
*
For building a minimum-size web subset of core glslang:
+
turn on
`-DENABLE_GLSLANG_WEBMIN=ON`
(disables HLSL)
+
execute
`updateGrammar web`
from the glslang subdirectory
(or if using your own scripts,
`m4`
needs a
`-DGLSLANG_WEB`
argument)
+
optionally, for GLSL compilation error messages, turn on
`-DENABLE_GLSLANG_WEBMIN_DEVEL=ON`
*
To get a fully minimized build, make sure to use
`brotli`
to compress the .js
and .wasm files
Example:
```
sh
emcmake cmake
-DCMAKE_BUILD_TYPE
=
Release
-DENABLE_GLSLANG_
WEB
=
ON
\
emcmake cmake
-DCMAKE_BUILD_TYPE
=
Release
-DENABLE_GLSLANG_
JS
=
ON
\
-DENABLE_HLSL
=
OFF
-DBUILD_TESTING
=
OFF
-DENABLE_OPT
=
OFF
-DINSTALL_GTEST
=
OFF ..
```
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment