Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
codes
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
38
Issues
38
List
Boards
Labels
Milestones
Merge Requests
8
Merge Requests
8
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
codes
codes
Commits
9c0d9ec1
Commit
9c0d9ec1
authored
Aug 06, 2013
by
Philip Carns
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add --enable-valgrind-clean
- helpful for address-sanitizer use too
parent
5f4b9426
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletion
+14
-1
configure.ac
configure.ac
+13
-0
src/util/lookup3.c
src/util/lookup3.c
+1
-1
No files found.
configure.ac
View file @
9c0d9ec1
...
@@ -89,6 +89,19 @@ else
...
@@ -89,6 +89,19 @@ else
AC_MSG_ERROR([Could not find usable ROSS installation, try --with-ross=DIR])
AC_MSG_ERROR([Could not find usable ROSS installation, try --with-ross=DIR])
fi
fi
dnl ======================================================================
dnl Try harder to be valgrind safe
dnl ======================================================================
AC_ARG_ENABLE(valgrind-clean,
[AS_HELP_STRING(
[--enable-valgrind-clean],
[Try harder to avoid valgrind warnings])
])
AS_IF([test "x$enable_valgrind_clean" = "xyes"], [
AC_DEFINE([VALGRIND], [1], [If enabling valgrind-clean build])
])
#
#
# To reactivate rewriting of the codesparser.y file,
# To reactivate rewriting of the codesparser.y file,
# uncomment next line.
# uncomment next line.
...
...
src/util/lookup3.c
View file @
9c0d9ec1
#include "codes_base_config.h"
#include "codes/jenkins-hash.h"
#include "codes/jenkins-hash.h"
/*
/*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment