Difference between revisions of "NASM"
From CBLFS
Jump to navigationJump to search (→Introduction to NASM) |
|||
Line 12: | Line 12: | ||
== Introduction to NASM == | == Introduction to NASM == | ||
− | + | <Package Description Needed> | |
== Dependencies == | == Dependencies == |
Revision as of 23:36, 11 January 2007
Download Source: | http://prdownloads.sourceforge.net/nasm/nasm-2.07.tar.bz2 |
---|---|
Required Patch: | http://svn.cross-lfs.org/svn/repos/patches/nasm/nasm-2.07-security_fix-1.patch |
Contents
Introduction to NASM
<Package Description Needed>
Dependencies
Optional (For Building Documentation)
Non-Multilib
Compile the package:
patch -Np1 -i ../nasm-2.07-security_fix-1.patch && ./configure --prefix=/usr && make
Install the package
make install
Multilib
This package does not provide any libraries so only one installation is needed.
32Bit
Compile the package:
patch -Np1 -i ../nasm-2.07-security_fix-1.patch && CC="gcc ${BUILD32}" ./configure --prefix=/usr && make
Install the package
make install
N32
Compile the package:
patch -Np1 -i ../nasm-2.07-security_fix-1.patch && CC="gcc ${BUILDN32}" ./configure --prefix=/usr && make
Install the package
make install
64Bit
Compile the package:
patch -Np1 -i ../nasm-2.07-security_fix-1.patch && CC="gcc ${BUILD64}" ./configure --prefix=/usr && make
Install the package
make install