pbot/modules/compiler_vm/languages/tendra.pm

54 lines
1.2 KiB
Perl
Raw Normal View History

2015-01-16 06:21:40 +01:00
#!/usr/bin/perl
use warnings;
use strict;
package tendra;
use parent '_c_base';
sub initialize {
my ($self, %conf) = @_;
$self->{sourcefile} = 'prog.c';
$self->{execfile} = 'prog';
$self->{default_options} = '-Xp -Yansi';
2015-01-16 06:21:40 +01:00
$self->{cmdline} = 'tcc -Wa,-32 -Wl,-melf_i386 -g $sourcefile $options -o $execfile';
$self->{prelude} = <<'END';
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
2015-01-17 13:40:00 +01:00
#include <float.h>
2015-01-16 06:21:40 +01:00
#include <math.h>
#include <limits.h>
#include <errno.h>
#include <ctype.h>
#include <assert.h>
#include <locale.h>
#include <setjmp.h>
#include <signal.h>
2015-01-17 13:40:00 +01:00
#include <time.h>
#include <stdarg.h>
#include <stddef.h>
2015-01-16 06:21:40 +01:00
END
}
sub postprocess_output {
my $self = shift;
$self->SUPER::postprocess_output;
$self->{output} =~ s/^\n+//mg;
$self->{output} =~ s/^\[Warning: Directory 'c89' already defined.\]\s*//;
$self->{output} =~ s/\s*Warning: Directory 'c89' already defined.//g;
if ((not exists $self->{options}->{'-paste'}) and (not defined $self->{got_run} or $self->{got_run} ne 'paste')) {
$self->{output} =~ s/"$self->{sourcefile}", line \d+:\s*//g;
$self->{output} =~ s/Error:\s+\[/Error: [/g;
$self->{output} =~ s/Warning:\s+\[/Warning: [/g;
}
}
2015-01-16 06:21:40 +01:00
1;