use strict;
use warnings;

use SPVM::Builder::Config::Exe;

my $exe_config = SPVM::Builder::Config::Exe->load_base_config(__FILE__);

$exe_config->config_spvm_core->optimize("-O0 -g");

$exe_config->quiet(0);
$exe_config->force(1);

$exe_config;