https://github.com/evanw/emscripten-precompiled-headers
Test case for https://github.com/kripken/emscripten/issues/2045
https://github.com/evanw/emscripten-precompiled-headers
Last synced: 3 months ago
JSON representation
Test case for https://github.com/kripken/emscripten/issues/2045
- Host: GitHub
- URL: https://github.com/evanw/emscripten-precompiled-headers
- Owner: evanw
- Created: 2014-01-24T08:17:08.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-01-24T08:20:28.000Z (over 11 years ago)
- Last Synced: 2025-03-06T16:51:05.246Z (3 months ago)
- Language: C++
- Size: 137 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Precompiled headers for emscripten
This is a test case showing off precompiled headers working with emscripten. It just compiles JsonCpp a few times to simulate a real C++ code base. To build without precompiled headers, run:
make slow
To build with precompiled headers, run:
make fast
On my machine, a slow build takes 28 seconds and a fast build takes 17 seconds.