Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
nettle
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
5
Merge Requests
5
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
Nettle
nettle
Commits
befd90d2
Commit
befd90d2
authored
Jul 18, 2002
by
Niels Möller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't use -ggdb3 with gcc-2.96.
Rev: src/nettle/ChangeLog:1.101 Rev: src/nettle/configure.ac:1.7
parent
5f2be18e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
3 deletions
+13
-3
ChangeLog
ChangeLog
+4
-0
configure.ac
configure.ac
+9
-3
No files found.
ChangeLog
View file @
befd90d2
2002-07-18 Niels Möller <niels@s3.kth.se>
* configure.ac: Don't use -ggdb3 with gcc-2.96.
2002-05-16 Niels Möller <nisse@cuckoo.hack.org>
2002-05-16 Niels Möller <nisse@cuckoo.hack.org>
* sparc/aes.asm: Deleted registers i and t3.
* sparc/aes.asm: Deleted registers i and t3.
...
...
configure.ac
View file @
befd90d2
...
@@ -108,7 +108,13 @@ LSH_RPATH_FIX
...
@@ -108,7 +108,13 @@ LSH_RPATH_FIX
# Set these flags *last*, or else the test programs won't compile
# Set these flags *last*, or else the test programs won't compile
if test x$GCC = xyes ; then
if test x$GCC = xyes ; then
CFLAGS="$CFLAGS -ggdb3 -Wall -W \
# Using -ggdb3 makes (some versions of) Redhat's gcc-2.96 dump core
if "$CC" --version | grep '^2\.96$' 1>/dev/null 2>&1; then
true
else
CFLAGS="$CFLAGS -ggdb3"
fi
CFLAGS="$CFLAGS -Wall -W \
-Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes \
-Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes \
-Wpointer-arith -Wbad-function-cast -Wnested-externs"
-Wpointer-arith -Wbad-function-cast -Wnested-externs"
...
...
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