Edge
Edge

Reputation: 157

Installing/Compiling NASM package on Mac OS X Maverick

I have downloaded the Mac OS X NASM Assembler package from the NASM website and followed the instructions.

These are the instructions: NASM is an auto−configuring package: once you’ve unpacked it, cd to the directory it’s been unpacked into and type ./configure. This shell script will find the best C compiler to use for building NASM and set up Makefiles accordingly.

When I do exactly that I get the error No such file or directory. Has anyone seen and solved this problem? I have seen similar posts but they do not contain an answer. Thank you in advance!

Upvotes: 5

Views: 8315

Answers (2)

Serg Kryvonos
Serg Kryvonos

Reputation: 4677

Try using the NASM bundled with Xcode.

 which nasm
/usr/bin/nasm

Upvotes: 2

trojanfoe
trojanfoe

Reputation: 122401

My stock answer for these types of question is "use macports":

After installation, it's as simple as:

$ sudo port install nasm

Upvotes: 5

Related Questions