mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 10:33:59 -05:00
* Converted amd64 docs to ts * 6502 * 6502 part 2 * arm * avr * evm * java * llvm * python * Fix bug with only getting the first paragraph * Updated help messages
8 lines
251 B
Bash
Executable File
8 lines
251 B
Bash
Executable File
#/usr/bin/bash
|
|
|
|
LANGREF_PATH=$(pwd)/vendor/LangRef.html
|
|
|
|
[ -f "$LANGREF_PATH" ] || curl https://llvm.org/docs/LangRef.html -o "$LANGREF_PATH"
|
|
|
|
../../../node_modules/.bin/ts-node-esm docenizer-llvm.ts > ../../../lib/asm-docs/generated/asm-docs-llvm.ts
|