The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Alien::nasm - Find or build nasm, the netwide assembler

VERSION

version 0.23

SYNOPSIS

From your Perl script:

use Alien::nasm ();
use Env qw( @PATH );

unshift @ENV, Alien::nasm->bin_dir;
system 'nasm', ...;

From alienfile:

use alienfile;

share {
  requires 'Alien::nasm';
  build [
    '%{nasm} ...',
  ];
};

DESCRIPTION

This Alien module provides Netwide Assembler (NASM).

This class is a subclass of Alien::Base, so all of the methods documented there should work with this class.

HELPERS

nasm

%{nasm}

Returns the name of the nasm executable.

ndisasm

%{ndisasm}

Returns the name of the ndisasm executable.

AUTHOR

Graham Ollis <plicease@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2017-2022 by Graham Ollis.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.