Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
ngtcp2
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue 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
Kashyap Thimmaraju
ngtcp2
Commits
3522b13e
Commit
3522b13e
authored
5 years ago
by
Tatsuhiro Tsujikawa
Browse files
Options
Downloads
Patches
Plain Diff
Fix --enable-debug handling
parent
9e74dde2
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
configure.ac
+2
-6
2 additions, 6 deletions
configure.ac
with
2 additions
and
6 deletions
configure.ac
+
2
−
6
View file @
3522b13e
...
...
@@ -69,9 +69,10 @@ AC_ARG_ENABLE([debug],
[Turn on debug output])],
[debug=$enableval], [debug=no])
if test "x${debug}" = "x
${enableval}
"; then
if test "x${debug}" = "x
yes
"; then
DEBUGCFLAGS="-O0 -g3"
AC_SUBST([DEBUGCFLAGS])
AC_DEFINE([DEBUGBUILD], [1], [Define to 1 to enable debug output.])
fi
AC_ARG_ENABLE(asan,
...
...
@@ -342,11 +343,6 @@ AX_CHECK_COMPILE_FLAG([-fvisibility=hidden], [EXTRACFLAG="-fvisibility=hidden"])
AC_SUBST([EXTRACFLAG])
# debug build
if test "x$debug" != "xno"; then
AC_DEFINE([DEBUGBUILD], [1], [Define to 1 to enable debug output.])
fi
AC_CONFIG_FILES([
Makefile
lib/Makefile
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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