1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
package Colorize::Common;
use strict;
use warnings;
use base qw(Exporter);
use constant true => 1;
use File::Temp qw(tempfile);
our (@EXPORT_OK, %EXPORT_TAGS);
my @defaults;
@defaults = qw($source $compiler);
@EXPORT_OK = (qw($compiler_flags %BUF_SIZE $valgrind_command $write_to_tmpfile), @defaults);
%EXPORT_TAGS = ('defaults' => [ @defaults ]);
our ($source, $compiler, $compiler_flags, %BUF_SIZE, $valgrind_command, $write_to_tmpfile);
#---------------#
# START of data #
#---------------#
$source = 'colorize.c';
$compiler = 'gcc';
$compiler_flags = '-ansi -pedantic -Wall -Wextra -Wformat -Wswitch-default -Wuninitialized -Wunused -Wno-unused-function -Wno-unused-parameter';
%BUF_SIZE = (
normal => 1024,
short => 10,
);
$valgrind_command = 'valgrind';
$write_to_tmpfile = sub
{
my ($content) = @_;
my ($fh, $tmpfile) = tempfile(UNLINK => true);
print {$fh} $content;
close($fh);
return $tmpfile;
};
#-------------#
# END of data #
#-------------#
1;
|