Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
DIVINE
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
paradise
mirror
DIVINE
Commits
f9015e7c
There was an error fetching the commit references. Please try again later.
Commit
f9015e7c
authored
5 years ago
by
Petr Rockai
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/lib/pkgc-unpack
+5
-2
5 additions, 2 deletions
test/lib/pkgc-unpack
with
5 additions
and
2 deletions
test/lib/pkgc-unpack
+
5
−
2
View file @
f9015e7c
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment