Forrest logo
back to context overview

as

List of commands for as:

  • as:tldr:2eda4 as: Assemble the output to a given file.
    $ as ${file-s} -o ${out-o}
    try on your machine
    explain this command
  • as:tldr:40833 as: Assemble a file, writing the output to `a.out`.
    $ as ${file-s}
    try on your machine
    explain this command
  • as:tldr:4451a as: Include a given path to the list of directories to search for files specified in `.include` directives.
    $ as -I ${path-to-directory} ${file-s}
    try on your machine
    explain this command
  • as:tldr:cbefb as: Generate output faster by skipping whitespace and comment preprocessing. (Should only be used for trusted compilers).
    $ as -f ${file-s}
    try on your machine
    explain this command
back to context overview