Forrest logo
back to context overview

adscript

List of commands for adscript:

  • adscript:tldr:38fde adscript: Compile a file to LLVM IR instead of native machine code.
    $ adscript --llvm-ir --output ${filename-ll} ${path-to-input_file-adscript}
    try on your machine
    explain this command
  • adscript:tldr:9967c adscript: Cross-compile a file to an object file for a foreign CPU architecture or operating system.
    $ adscript --target-triple ${i386-linux-elf} --output ${filename-o} ${path-to-input_file-adscript}
    try on your machine
    explain this command
  • adscript:tldr:c0364 adscript: Compile a file to an object file.
    $ adscript --output ${filename-o} ${path-to-input_file-adscript}
    try on your machine
    explain this command
  • adscript:tldr:d6d64 adscript: Compile and link a file to a standalone executable.
    $ adscript --executable --output ${filename} ${path-to-input_file-adscript}
    try on your machine
    explain this command
back to context overview