source: general/prog/nasm.xml@ 636e16f7

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 636e16f7 was 636e16f7, checked in by Pierre Labastie <pieere@…>, 6 years ago

Fix building Apache-Maven with Java 10
Remove duplicate fix in NASM

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

  • Property mode set to 100644
File size: 4.9 KB
RevLine 
[52d29f7]1<?xml version="1.0" encoding="ISO-8859-1"?>
[6732c094]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[52d29f7]4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
[efdd9de]7 <!ENTITY nasm-download-http "http://www.nasm.us/pub/nasm/releasebuilds/&nasm-version;/nasm-&nasm-version;.tar.xz">
8 <!ENTITY nasm-download-ftp " ">
[ccc19e1b]9 <!ENTITY nasm-md5sum "d5ca2ad7121ccbae69dd606b1038532c">
[e024fe4]10 <!ENTITY nasm-size "788 KB">
[ccc19e1b]11 <!ENTITY nasm-buildsize "27 MB" >
[42aba059]12 <!ENTITY nasm-time "0.2 SBU">
[52d29f7]13]>
14
[efdd9de]15<sect1 id="nasm" xreflabel="NASM-&nasm-version;">
16 <?dbhtml filename="nasm.html" ?>
[5eaa687]17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
[efdd9de]23 <title>NASM-&nasm-version;</title>
[5eaa687]24
[efdd9de]25 <indexterm zone="nasm">
[5eaa687]26 <primary sortas="a-NASM">NASM</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to NASM</title>
31
[7cd76d62]32 <para><application>NASM</application> (Netwide Assembler)
33 is an 80x86 assembler designed for portability and modularity. It includes a
[5eaa687]34 disassembler as well.</para>
35
[952c2494]36 &lfs82_checked;
[a9e90a5]37
[5eaa687]38 <bridgehead renderas="sect3">Package Information</bridgehead>
39 <itemizedlist spacing="compact">
40 <listitem>
[efdd9de]41 <para>Download (HTTP): <ulink url="&nasm-download-http;"/></para>
[5eaa687]42 </listitem>
43 <listitem>
[efdd9de]44 <para>Download (FTP): <ulink url="&nasm-download-ftp;"/></para>
[5eaa687]45 </listitem>
46 <listitem>
[efdd9de]47 <para>Download MD5 sum: &nasm-md5sum;</para>
[5eaa687]48 </listitem>
49 <listitem>
[efdd9de]50 <para>Download size: &nasm-size;</para>
[5eaa687]51 </listitem>
52 <listitem>
[efdd9de]53 <para>Estimated disk space required: &nasm-buildsize;</para>
[5eaa687]54 </listitem>
55 <listitem>
[efdd9de]56 <para>Estimated build time: &nasm-time;</para>
[5eaa687]57 </listitem>
58 </itemizedlist>
[e31502b]59
[60791bf]60 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
61 <itemizedlist spacing="compact">
[bccbdaea]62 <listitem>
[e31502b]63 <para>Optional documentation: <ulink
[efdd9de]64 url="http://www.nasm.us/pub/nasm/releasebuilds/&nasm-version;/nasm-&nasm-version;-xdoc.tar.xz"/></para>
[60791bf]65 </listitem>
66 </itemizedlist>
[e31502b]67
[1039de3]68 <para condition="html" role="usernotes">User Notes:
69 <ulink url="&blfs-wiki;/nasm"/></para>
70
[5eaa687]71 </sect2>
72
73 <sect2 role="installation">
74 <title>Installation of NASM</title>
75
[0d7900a]76 <para>If you downloaded the optional documentation, put it into the
[e31502b]77 source tree:</para>
78
[efdd9de]79<screen><userinput>tar -xf ../nasm-&nasm-version;-xdoc.tar.xz --strip-components=1</userinput></screen>
[e31502b]80
[0590db71]81 <para>
82 Apply some upstream fixes, which are needed for compiling with gcc-8.1:
83 </para>
84
85<screen><userinput>sed -e '/seg_init/d' \
86 -e 's/pure_func seg_alloc/seg_alloc/' \
87 -i include/nasmlib.h</userinput></screen>
88
[7cd76d62]89 <para>Install <application>NASM</application> by running
[5eaa687]90 the following commands:</para>
91
[61db33a]92<screen><userinput>./configure --prefix=/usr &amp;&amp;
[e31502b]93make</userinput></screen>
94
[5eaa687]95 <para>This package does not come with a test suite.</para>
[87053af]96
[5eaa687]97 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
[bd23186f]98
[efdd9de]99<!-- dev note: make INSTALLROOT=<DESTDIR> install -->
100
[e31502b]101<screen role="root"><userinput>make install</userinput></screen>
102
103 <para>If you downloaded the optional documentation, install it with the
104 following instructions as the <systemitem
105 class="username">root</systemitem> user:</para>
106
[efdd9de]107<screen role="root"><userinput>install -m755 -d /usr/share/doc/nasm-&nasm-version;/html &amp;&amp;
108cp -v doc/html/*.html /usr/share/doc/nasm-&nasm-version;/html &amp;&amp;
[42aba059]109cp -v doc/*.{txt,ps,pdf} /usr/share/doc/nasm-&nasm-version;</userinput></screen>
[92b0b42]110
[5eaa687]111 </sect2>
112
113 <sect2 role="content">
114 <title>Contents</title>
115
116 <segmentedlist>
117 <segtitle>Installed Programs</segtitle>
[c3c56b2]118 <segtitle>Installed Libraries</segtitle>
[92b0b42]119 <segtitle>Installed Directory</segtitle>
[5eaa687]120
121 <seglistitem>
[62e5e8f]122 <seg>nasm and ndisasm</seg>
[c3c56b2]123 <seg>None</seg>
[efdd9de]124 <seg>/usr/share/doc/nasm-&nasm-version;</seg>
[5eaa687]125 </seglistitem>
126 </segmentedlist>
127
128 <variablelist>
129 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
130 <?dbfo list-presentation="list"?>
131 <?dbhtml list-presentation="table"?>
132
133 <varlistentry id="nasm-prog">
134 <term><command>nasm</command></term>
135 <listitem>
136 <para>is a portable 80x86 assembler.</para>
[efdd9de]137 <indexterm zone="nasm nasm-prog">
[5eaa687]138 <primary sortas="b-nasm">nasm</primary>
139 </indexterm>
140 </listitem>
141 </varlistentry>
142
143 <varlistentry id="ndisasm">
144 <term><command>ndisasm</command></term>
145 <listitem>
146 <para>is an 80x86 binary file disassembler.</para>
[efdd9de]147 <indexterm zone="nasm ndisasm">
[5eaa687]148 <primary sortas="b-ndisasm">ndisasm</primary>
149 </indexterm>
150 </listitem>
151 </varlistentry>
152
153 </variablelist>
154
155 </sect2>
[284d8e17]156
157</sect1>
Note: See TracBrowser for help on using the repository browser.