9 lines
102 B
Bash
9 lines
102 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
compiler="cl"
|
||
|
compile_mode="debug"
|
||
|
assembler="ml64"
|
||
|
arch="x64"
|
||
|
linker="link"
|
||
|
ctx_opts=""
|