Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Z
zafl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Open Source Software
zafl
Commits
b3ce3df0
Commit
b3ce3df0
authored
4 years ago
by
Jason Hiser
Browse files
Options
Downloads
Patches
Plain Diff
Updates for ubuntu20
parent
7fa3d6cf
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#11683
passed
4 years ago
Stage: clean
Stage: build
Stage: test
Stage: deploy
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
libzafl
+1
-1
1 addition, 1 deletion
libzafl
tools/SConstruct
+2
-2
2 additions, 2 deletions
tools/SConstruct
tools/laf/laf_driver.cpp
+1
-1
1 addition, 1 deletion
tools/laf/laf_driver.cpp
tools/zax/zax_driver.cpp
+1
-1
1 addition, 1 deletion
tools/zax/zax_driver.cpp
with
5 additions
and
5 deletions
libzafl
@
26f4b47d
Compare
00c68e32
...
26f4b47d
Subproject commit
00c68e321254563930443f3dbd34fbe6248dba77
Subproject commit
26f4b47da6575fe4abd9df3f15e6bde6d316c588
This diff is collapsed.
Click to expand it.
tools/SConstruct
+
2
−
2
View file @
b3ce3df0
...
...
@@ -20,12 +20,12 @@ env.Replace(IRDB_LIBS=os.environ['IRDB_LIBS'])
env
.
Replace
(
debug
=
ARGUMENTS
.
get
(
"
debug
"
,
0
))
if
int
(
env
[
'
debug
'
])
==
1
:
print
"
Setting debug mode
"
print
(
"
Setting debug mode
"
)
env
.
Append
(
CFLAGS
=
"
-g
"
)
env
.
Append
(
CXXFLAGS
=
"
-g
"
)
env
.
Append
(
LINKFLAGS
=
"
-g
"
)
else
:
print
"
Setting release mode
"
print
(
"
Setting release mode
"
)
env
.
Append
(
CFLAGS
=
"
-O3
"
)
env
.
Append
(
CXXFLAGS
=
"
-O3
"
)
env
.
Append
(
LINKFLAGS
=
"
-O3
"
)
...
...
This diff is collapsed.
Click to expand it.
tools/laf/laf_driver.cpp
+
1
−
1
View file @
b3ce3df0
...
...
@@ -150,7 +150,7 @@ int main(int argc, char **argv)
cout
<<
"Skipping (no changes) "
<<
this_file
->
getURL
()
<<
endl
;
}
}
catch
(
DatabaseError_t
pnide
)
catch
(
const
DatabaseError_t
&
pnide
)
{
cerr
<<
programName
<<
": Unexpected database error: "
<<
pnide
<<
"file url: "
<<
this_file
->
getURL
()
<<
endl
;
exit
(
1
);
...
...
This diff is collapsed.
Click to expand it.
tools/zax/zax_driver.cpp
+
1
−
1
View file @
b3ce3df0
...
...
@@ -343,7 +343,7 @@ int main(int argc, char **argv)
cout
<<
"Skipping (no changes) "
<<
this_file
->
getURL
()
<<
endl
;
}
}
catch
(
const
DatabaseError_t
pnide
)
catch
(
const
DatabaseError_t
&
pnide
)
{
cerr
<<
programName
<<
": Unexpected database error: "
<<
pnide
<<
"file url: "
<<
this_file
->
getURL
()
<<
endl
;
exit
(
1
);
...
...
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