Name
SPVM::Builder::Config::Exe - Configurations of creating excutable files.
Usage
use SPVM::Builder::Config::Exe;
my $config = SPVM::Builder::Config::Exe->new_gnu99;
Description
SPVM::Builder::Config::Exe is configuration of creating excutable files of spvmcc.
Field Methods
Fields of SPVM::Builder::Config::Exe.
Fields are inherited from SPVM::Builder::Config and you can use the following fields.
no_precompile
my $no_precompile = $config->no_precompile;
$config->no_precompile($no_precompile);
If no_precompile
is a true value, precompiling is not performed.
no_compiler_api
my $no_compiler_api = $config->no_compiler_api;
$config->no_compiler_api($no_compiler_api);
If no_compiler_api
is a true value, the source codes of the compiler native APIs and the precompile native APIs is not linked.
Methods
Methods of SPVM::Builder::Config::Exe.
Methods are inherited from SPVM::Builder::Config and you can use the following methods.
new
my $config = SPVM::Builder::Config::Exe->new;
Create a new SPVM::Builder::Config::Exe
object.
This is same as "new" in SPVM::Builder::Config, but set output_type
field to exe
.