source: general/prog/nasm.xml@ 42b1e6e

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 42b1e6e was 42b1e6e, checked in by Bruce Dubbs <bdubbs@…>, 12 years ago

Update to nasm-2.10.05

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@10739 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 7.7 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY NASM-download-http "http://www.nasm.us/pub/nasm/releasebuilds/&NASM-version;/nasm-&NASM-version;.tar.xz">
8 <!ENTITY NASM-download-ftp " ">
9 <!ENTITY NASM-md5sum "67fedf8df630d071c4804f794b2d3dcb">
10 <!ENTITY NASM-size "672 KB">
11 <!ENTITY NASM-buildsize "19 MB" >
12 <!ENTITY NASM-time "0.1 SBU">
13]>
14
15<sect1 id="NASM" xreflabel="NASM-&NASM-version;">
16 <?dbhtml filename="NASM.html" ?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>NASM-&NASM-version;</title>
24
25 <indexterm zone="NASM">
26 <primary sortas="a-NASM">NASM</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to NASM</title>
31
32 <para><application>NASM</application> (Netwide Assembler)
33 is an 80x86 assembler designed for portability and modularity. It includes a
34 disassembler as well.</para>
35
36 &lfs72_checked;
37
38 <bridgehead renderas="sect3">Package Information</bridgehead>
39 <itemizedlist spacing="compact">
40 <listitem>
41 <para>Download (HTTP): <ulink url="&NASM-download-http;"/></para>
42 </listitem>
43 <listitem>
44 <para>Download (FTP): <ulink url="&NASM-download-ftp;"/></para>
45 </listitem>
46 <listitem>
47 <para>Download MD5 sum: &NASM-md5sum;</para>
48 </listitem>
49 <listitem>
50 <para>Download size: &NASM-size;</para>
51 </listitem>
52 <listitem>
53 <para>Estimated disk space required: &NASM-buildsize;</para>
54 </listitem>
55 <listitem>
56 <para>Estimated build time: &NASM-time;</para>
57 </listitem>
58 </itemizedlist>
59
60 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
61 <itemizedlist spacing="compact">
62 <listitem>
63 <para>Optional documentation: <ulink
64 url="http://www.nasm.us/pub/nasm/releasebuilds/&NASM-version;/nasm-&NASM-version;-xdoc.tar.xz"/></para>
65 </listitem>
66 </itemizedlist>
67
68 <para condition="html" role="usernotes">User Notes:
69 <ulink url="&blfs-wiki;/nasm"/></para>
70
71 </sect2>
72
73 <sect2 role="installation">
74 <title>Installation of NASM</title>
75
76 <para>If you downloaded the optional documentation, put it into the
77 source tree:</para>
78
79<screen><userinput>tar -xf ../nasm-&NASM-version;-xdoc.tar.xz --strip-components=1</userinput></screen>
80
81 <para>Install <application>NASM</application> by running
82 the following commands:</para>
83
84<screen><userinput>./configure --prefix=/usr &amp;&amp;
85make</userinput></screen>
86
87 <para>This package does not come with a test suite.</para>
88
89 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
90
91<screen role="root"><userinput>make install</userinput></screen>
92
93 <para>If you downloaded the optional documentation, install it with the
94 following instructions as the <systemitem
95 class="username">root</systemitem> user:</para>
96
97<screen role="root"><userinput>install -m755 -d /usr/share/doc/nasm-&NASM-version;/html &amp;&amp;
98cp -v doc/html/*.html /usr/share/doc/nasm-&NASM-version;/html &amp;&amp;
99cp -v doc/*.{txt,ps,pdf} /usr/share/doc/nasm-&NASM-version; &amp;&amp;
100cp -v doc/info/* /usr/share/info &amp;&amp;
101pushd /usr/share/info &amp;&amp;
102install-info nasm.info dir &amp;&amp;
103popd</userinput></screen>
104
105<!-- install_rdf &amp;&amp;
106install -v -m755 -d /usr/share/doc/nasm-&NASM-version;/html &amp;&amp;
107install -v -m644 rdoff/doc/rdoff/* \
108 /usr/share/doc/nasm-&NASM-version;/html &amp;&amp;
109install -v -m644 rdoff/doc/{*.txt,rdoff.html} \
110 /usr/share/doc/nasm-&NASM-version; &amp;&amp;
111install -v -m644 rdoff/doc/rdoff.info* \
112 /usr/share/info &amp;&amp;
113pushd /usr/share/info &amp;&amp;
114 rm -fv dir &amp;&amp;
115 for FILENAME in *; do install-info $FILENAME dir; done &amp;&amp;
116 unset FILENAME &amp;&amp;
117popd</userinput></screen>
118
119 <para>If you built the <application>Ghostscript</application> generated
120 documentation, install it using the following commands as the
121 <systemitem class="username">root</systemitem> user:</para>
122
123<screen role="root"><userinput>sed -i 's|doc/nasm|share/doc/nasm-&NASM-version;|' doc/Makefile &amp;&amp;
124make install_doc &amp;&amp;
125
126pushd /usr/share/info &amp;&amp;
127 rm -fv dir &amp;&amp;
128 for FILENAME in *; do install-info $FILENAME dir; done &amp;&amp;
129 unset FILENAME &amp;&amp;
130popd</userinput></screen>
131
132 <para>Lastly, if you built the RDOFF PDF and Postscript documentation,
133 install it using the following command as the
134 <systemitem class="username">root</systemitem> user:</para>
135
136<screen role="root"><userinput>install -v -m644 rdoff/doc/rdoff.p{df,s} \
137 /usr/share/doc/nasm-&NASM-version;</userinput></screen>
138-->
139 </sect2>
140
141 <sect2 role="content">
142 <title>Contents</title>
143
144 <segmentedlist>
145 <segtitle>Installed Programs</segtitle>
146 <segtitle>Installed Directories</segtitle>
147
148 <seglistitem>
149 <seg>nasm and ndisasm</seg>
150 <seg>/usr/share/doc/nasm-&NASM-version;</seg>
151 </seglistitem>
152 </segmentedlist>
153
154 <variablelist>
155 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
156 <?dbfo list-presentation="list"?>
157 <?dbhtml list-presentation="table"?>
158
159 <varlistentry id="nasm-prog">
160 <term><command>nasm</command></term>
161 <listitem>
162 <para>is a portable 80x86 assembler.</para>
163 <indexterm zone="NASM nasm-prog">
164 <primary sortas="b-nasm">nasm</primary>
165 </indexterm>
166 </listitem>
167 </varlistentry>
168
169 <varlistentry id="ndisasm">
170 <term><command>ndisasm</command></term>
171 <listitem>
172 <para>is an 80x86 binary file disassembler.</para>
173 <indexterm zone="NASM ndisasm">
174 <primary sortas="b-ndisasm">ndisasm</primary>
175 </indexterm>
176 </listitem>
177 </varlistentry>
178<!--
179 <varlistentry id="ldrdf">
180 <term><command>ldrdf</command></term>
181 <listitem>
182 <para>is an RDOFF linker.</para>
183 <indexterm zone="NASM ldrdf">
184 <primary sortas="b-ldrdf">ldrdf</primary>
185 </indexterm>
186 </listitem>
187 </varlistentry>
188
189 <varlistentry id="rdf2bin">
190 <term><command>rdf2bin</command></term>
191 <listitem>
192 <para>converts an RDOFF object file to flat binary.</para>
193 <indexterm zone="NASM rdf2bin">
194 <primary sortas="b-rdf2bin">rdf2bin</primary>
195 </indexterm>
196 </listitem>
197 </varlistentry>
198
199 <varlistentry id="rdfdump">
200 <term><command>rdfdump</command></term>
201 <listitem>
202 <para>dumps the contents of an RDOFF file.</para>
203 <indexterm zone="NASM rdfdump">
204 <primary sortas="b-rdfdump">rdfdump</primary>
205 </indexterm>
206 </listitem>
207 </varlistentry>
208
209 <varlistentry id="rdflib">
210 <term><command>rdflib</command></term>
211 <listitem>
212 <para>is an RDOFF librarian.</para>
213 <indexterm zone="NASM rdflib">
214 <primary sortas="b-rdflib">rdflib</primary>
215 </indexterm>
216 </listitem>
217 </varlistentry>
218
219 <varlistentry id="rdx">
220 <term><command>rdx</command></term>
221 <listitem>
222 <para>is used to load and execute an RDOFF module.</para>
223 <indexterm zone="NASM rdx">
224 <primary sortas="b-rdx">rdx</primary>
225 </indexterm>
226 </listitem>
227 </varlistentry> -->
228
229 </variablelist>
230
231 </sect2>
232
233</sect1>
Note: See TracBrowser for help on using the repository browser.