NAME
Alien::Base2 - Intermediate base class for Aliens
VERSION
version 0.06
SYNOPSIS
package Alien::MyLib;
use strict;
use warnings;
use base qw( Alien::Base2 );
1;
DESCRIPTION
This is an experimental subclass of Alien::Base for use with Alien::Build. The intention is for this class to eventually go away, and thus only of use for Alien developers working on the bleeding edge. If you want to use some of the advanced features of Alien::Build please make sure you hang out on the #native
IRC channel for Alien developers.
METHODS
cflags_static
my $cflags = Alien::Base2->cflags_static;
Returns the static compiler flags used to compile against the library.
libs_static
my $libs = Alien::Base2->libs_static;
Returns the static linker flags used to link against the library.
config
my $value = Alien::Base2->config($key);
This is an interface to the legacy configuration used by Alien::Base in times of yore. Do not use it.
SEE ALSO
AUTHOR
Graham Ollis <plicease@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2017 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.