Skip to content
Snippets Groups Projects
Commit f9015e7c authored by Petr Rockai's avatar Petr Rockai
Browse files

test: Construct the cflags for pkgc-unpack dependency chasing more carefully.

parent e415744a
No related branches found
No related tags found
No related merge requests found
...@@ -7,11 +7,15 @@ $ext = "cpp" if $fn =~ m,\.cpp$,; ...@@ -7,11 +7,15 @@ $ext = "cpp" if $fn =~ m,\.cpp$,;
my $dir = $fn; my $dir = $fn;
$dir =~ s,(^|/)([^/]*)$,,; $dir =~ s,(^|/)([^/]*)$,,;
my $basename = $2; my $basename = $2;
my $file = `cat $fn`;
# copy over any #include files # copy over any #include files
my $cc = "$ENV{BINDIR}/../toolchain/clang/bin/clang"; my $cc = "$ENV{BINDIR}/../toolchain/clang/bin/clang";
$cc = "c++ -std=c++14" if $ext eq "cpp"; $cc = "c++ -std=c++14" if $ext eq "cpp";
my $cflags = "-isystem $ENV{SRCDIR}/dios/include -isystem $ENV{BINDIR}/dios/include"; my $cflags = "-isystem $ENV{SRCDIR}/dios/include -isystem $ENV{BINDIR}/dios/include -D__divine__";
$cflags .= " $2" if ( $file =~ m,^(/\*|//) CC_OPTS: (.*?)(\*/)?$,sm );
$cflags =~ s,\$SRC_ROOT,$ENV{SRCDIR},g;
my $extras = `cd $dir && $cc -MM -MT "" $basename $cflags`; my $extras = `cd $dir && $cc -MM -MT "" $basename $cflags`;
$extras =~ s,^: [^ ]*,,; # chop off the file itself $extras =~ s,^: [^ ]*,,; # chop off the file itself
for my $name ( split /\s+/, $extras ) for my $name ( split /\s+/, $extras )
...@@ -24,7 +28,6 @@ for my $name ( split /\s+/, $extras ) ...@@ -24,7 +28,6 @@ for my $name ( split /\s+/, $extras )
} }
# generate the variants # generate the variants
my $file = `cat $fn`;
my @var = grep { m#^// V: # } (split /\n/, $file); my @var = grep { m#^// V: # } (split /\n/, $file);
for ( @var ) for ( @var )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment