Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Wim Lewis
nettle
Commits
69c38ef5
Commit
69c38ef5
authored
Mar 28, 2010
by
Niels Möller
Browse files
(asm_path): For x86_64, check if compiler is generating 32-bit code.
Rev: nettle/ChangeLog:1.67 Rev: nettle/configure.ac:1.15
parent
fa095eab
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
69c38ef5
2010-03-28 Niels Mller <nisse@lysator.liu.se>
* configure.ac (asm_path): For x86_64, check if compiler is
generating 32-bit code.
2010-03-27 Niels Mller <nisse@lysator.liu.se>
* testsuite/hmac-test.c (test_main): Rewrote rest of tests to use
...
...
configure.ac
View file @
69c38ef5
...
...
@@ -123,7 +123,15 @@ case "$host_cpu" in
asm_path=x86
;;
[x86_64 | amd64])
asm_path=x86_64
AC_TRY_COMPILE([
#if defined(__i386__)
#error 32-bit x86
#endif
], [], [
asm_path=x86_64
], [
asm_path=x86
])
;;
*sparc*)
AC_TRY_COMPILE([
...
...
Write
Preview
Supports
Markdown
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