diff options
Diffstat (limited to 'make/unit-cc.pl')
-rwxr-xr-x | make/unit-cc.pl | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/make/unit-cc.pl b/make/unit-cc.pl new file mode 100755 index 000000000..5110037ac --- /dev/null +++ b/make/unit-cc.pl @@ -0,0 +1,31 @@ +#!/usr/bin/perl +use strict; +use warnings; +BEGIN { push @INC, '..'; } +use make::configure; + +my $file = shift; +my $verbose; + +if ($file =~ /^-/) { + $_ = $file; + $file = shift; + $verbose = /v/; +} + +my $out = shift; + +my $cflags = nopedantic($file) ? $ENV{NICEFLAGS} : $ENV{FLAGS}; +$cflags .= ' ' . getcompilerflags($file); + +my $flags; +if ($out =~ /\.so$/) { + $flags = join ' ', $cflags, $ENV{PICLDFLAGS}, getlinkerflags($file); +} else { + $flags = "$cflags -c"; +} + +my $execstr = "$ENV{RUNCC} $flags -o $out $file"; +print "$execstr\n" if $verbose; +exec $execstr; +exit 1; |