source: general/prog/yasm.xml@ 4949485e

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 4949485e was 4949485e, checked in by Ken Moffat <ken@…>, 12 years ago

From the Lost Property Office. Second attempt to check this in, first failed without me noticing! On the face of it, multimedia/ already had the properties, but they didn't show in svn proplist -v.

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

  • Property mode set to 100644
File size: 4.4 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 <!-- Place this in the general.ent file
8 <!ENTITY yasm-version "">
9 -->
10
11 <!ENTITY yasm-download-http "http://www.tortall.net/projects/yasm/releases/yasm-&yasm-version;.tar.gz">
12 <!ENTITY yasm-download-ftp " ">
13 <!ENTITY yasm-md5sum "4cfc0686cf5350dd1305c4d905eb55a6">
14 <!ENTITY yasm-size "1.4 MB">
15 <!ENTITY yasm-buildsize "41 MB">
16 <!ENTITY yasm-time "0.2 SBU">
17]>
18
19<sect1 id="yasm" xreflabel="yasm-&yasm-version;">
20 <?dbhtml filename="yasm.html"?>
21
22 <sect1info>
23 <othername>$LastChangedBy$</othername>
24 <date>$Date$</date>
25 </sect1info>
26
27 <title>yasm-&yasm-version;</title>
28
29 <indexterm zone="yasm">
30 <primary sortas="a-yasm">yasm</primary>
31 </indexterm>
32
33 <sect2 role="package">
34 <title>Introduction to yasm</title>
35
36 <para><application>Yasm</application> is a complete rewrite of the
37 <xref linkend="NASM"/> assembler. It supports the x86 and AMD64 instruction
38 sets, accepts NASM and GAS assembler syntaxes and outputs binary, ELF32 and
39 ELF64 object formats.</para>
40
41 &lfs70_checked;
42
43 <bridgehead renderas="sect3">Package Information</bridgehead>
44 <itemizedlist spacing="compact">
45 <listitem>
46 <para>Download (HTTP): <ulink url="&yasm-download-http;"/></para>
47 </listitem>
48 <listitem>
49 <para>Download (FTP): <ulink url="&yasm-download-ftp;"/></para>
50 </listitem>
51 <listitem>
52 <para>Download MD5 sum: &yasm-md5sum;</para>
53 </listitem>
54 <listitem>
55 <para>Download size: &yasm-size;</para>
56 </listitem>
57 <listitem>
58 <para>Estimated disk space required: &yasm-buildsize;</para>
59 </listitem>
60 <listitem>
61 <para>Estimated build time: &yasm-time;</para>
62 </listitem>
63 </itemizedlist>
64
65 <para condition="html" role="usernotes">User Notes:
66 <ulink url="&blfs-wiki;/yasm"/></para>
67
68 </sect2>
69
70 <sect2 role="installation">
71 <title>Installation of yasm</title>
72
73 <para>Install <application>yasm</application> by running the following
74 commands:</para>
75
76<screen><userinput>sed -i 's#) ytasm.*#)#' Makefile.in &amp;&amp;
77./configure --prefix=/usr &amp;&amp;
78make</userinput></screen>
79
80 <para>To test the results, issue: <command>make check</command>.</para>
81
82 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
83
84<screen role="root"><userinput>make install</userinput></screen>
85
86 </sect2>
87
88 <sect2 role="commands">
89 <title>Command Explanations</title>
90
91 <para><command>sed -i 's#) ytasm.*#)#' Makefile.in</command>: This sed
92 prevents it compiling 2 programs (vsyasm and ytasm) that are only of use
93 on Microsoft Windows.</para>
94
95 </sect2>
96
97 <sect2 role="content">
98 <title>Contents</title>
99
100 <segmentedlist>
101 <segtitle>Installed Program</segtitle>
102 <segtitle>Installed Library</segtitle>
103 <segtitle>Installed Directory</segtitle>
104
105 <seglistitem>
106 <seg>yasm</seg>
107 <seg>libyasm.a</seg>
108 <seg>/usr/include/libyasm</seg>
109 </seglistitem>
110 </segmentedlist>
111
112 <variablelist>
113 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
114 <?dbfo list-presentation="list"?>
115 <?dbhtml list-presentation="table"?>
116
117 <varlistentry id="yasm-prog">
118 <term><command>yasm</command></term>
119 <listitem>
120 <para>is a portable, retargetable assembler that supports the x86 and
121 AMD64 instruction sets, accepts NASM and GAS assembler syntaxes and
122 outputs binaries in ELF32 and ELF64 object formats.</para>
123 <indexterm zone="yasm yasm">
124 <primary sortas="b-yasm">yasm</primary>
125 </indexterm>
126 </listitem>
127 </varlistentry>
128
129 <varlistentry id="libyasm">
130 <term><filename class='libraryfile'>libyasm.a</filename></term>
131 <listitem>
132 <para>provides all of the core functionality of
133 <command>yasm</command>, for manipulating machine instructions and
134 object file constructs.</para>
135 <indexterm zone="yasm libyasm">
136 <primary sortas="c-libyasm">libyasm.a</primary>
137 </indexterm>
138 </listitem>
139 </varlistentry>
140
141 </variablelist>
142
143 </sect2>
144
145</sect1>
Note: See TracBrowser for help on using the repository browser.