mirror of
https://github.com/fofolee/uTools-Manuals.git
synced 2025-06-08 15:04:05 +08:00
26 lines
1.1 KiB
HTML
26 lines
1.1 KiB
HTML
<h1 id="as">as</h1>
|
||
<p>汇编语言编译器</p>
|
||
<h2 id="补充说明">补充说明</h2>
|
||
<p><strong>as命令</strong> GNU组织推出的一款汇编语言编译器,它支持多种不同类型的处理器。</p>
|
||
<h3 id="语法">语法</h3>
|
||
<pre><code class="language-bash">as(选项)(参数)</code></pre>
|
||
<h3 id="选项">选项</h3>
|
||
<pre><code class="language-bash">-ac:忽略失败条件;
|
||
-ad:忽略调试指令;
|
||
-ah:包括高级源;
|
||
-al:包括装配;
|
||
-am:包括宏扩展;
|
||
-an:忽略形式处理;
|
||
-as:包括符号;
|
||
=file:设置列出文件的名字;
|
||
--alternate:以交互宏模式开始;
|
||
-f:跳过空白和注释预处理;
|
||
-g:产生调试信息;
|
||
-J:对于有符号溢出不显示警告信息;
|
||
-L:在符号表中保留本地符号;
|
||
-o:指定要生成的目标文件;
|
||
--statistics:打印汇编所用的最大空间和总时间。</code></pre>
|
||
<h3 id="参数">参数</h3>
|
||
<p>汇编文件:指定要汇编的源文件。</p>
|
||
<!-- Linux命令行搜索引擎:https://jaywcjlove.github.io/linux-command/ -->
|