nasm/INSTALL

63 lines
1.2 KiB
Plaintext
Raw Normal View History

2002-05-01 05:09:12 +08:00
Installing nasm from source
===========================
2003-08-30 03:05:39 +08:00
Installing nasm is pretty straightforward on UN*X systems with Perl
and GNU tools installed.
2002-05-01 05:09:12 +08:00
2003-08-30 03:05:39 +08:00
If you checked out source from CVS you will need to run autoconf to
generate configure, otherwise you don't have to.
2002-05-01 05:09:12 +08:00
$ autoheader
2002-05-01 05:09:12 +08:00
$ autoconf
Then run configure to detect your platform settings and generate makefiles.
$ ./configure
2003-08-30 03:05:39 +08:00
You can get information about available configuration options by
running `./configure --help`.
2002-05-01 05:09:12 +08:00
2003-08-30 03:05:39 +08:00
If configure fails, please send bug report with detailed platform
information to <nasm-bugs@lists.sourceforge.net> and we will try to
help you asap!
2002-05-01 05:09:12 +08:00
If everything went okay, type
$ make
2003-08-30 03:05:39 +08:00
to build nasm, ndisasm and rdoff tools, or
2002-05-01 05:09:12 +08:00
$ make everything
to build the former plus the docs.
2003-08-30 03:05:39 +08:00
You can decrease the size of produces executables by stripping off
unnecessary information, to achieve this run
2002-05-01 05:09:12 +08:00
$ make strip
2003-08-30 03:05:39 +08:00
If you install to a system-wide location you might need to become
root:
$ su <enter root password>
2002-05-01 05:09:12 +08:00
then
$ make install
optionally followed by
$ make install_rdf
Or you can
$ make install_everything
to install everything =)
Thats it, enjoy!
PS. Installation instructions for other platforms are underway.