Alien::nasm - Find or build nasm, the netwide assembler
version 0.23
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} ...', ]; };
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.
%{nasm}
Returns the name of the nasm executable.
%{ndisasm}
Returns the name of the ndisasm executable.
Graham Ollis <plicease@cpan.org>
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.