Examples (4)
Compile a file to an object file
adscript --output path/to/file.o path/to/input_file.adscriptCompile and link a file to a standalone executable
adscript --executable --output path/to/file path/to/input_file.adscriptCompile a file to LLVM IR instead of native machine code
adscript --llvm-ir --output path/to/file.ll path/to/input_file.adscriptCross-compile a file to an object file for a foreign CPU architecture or operating system
adscript --target-triple i386-linux-elf --output path/to/file.o path/to/input_file.adscriptmade by @shridhargupta | data from tldr-pages