Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dmitry Baryshkov
nettle
Commits
82ffd6f8
Commit
82ffd6f8
authored
Apr 26, 2006
by
Niels Möller
Browse files
(ASM_ALIGN_LOG): Check if .align directive is
logarithmic. Rev: src/nettle/configure.ac:1.75
parent
4ce50746
Changes
1
Hide whitespace changes
Inline
Side-by-side
configure.ac
View file @
82ffd6f8
...
...
@@ -186,6 +186,7 @@ ASM_SYMBOL_PREFIX=''
ASM_ELF_STYLE='no'
ASM_TYPE_FUNCTION=''
ASM_MARK_NOEXEC_STACK=''
ASM_ALIGN_LOG=''
if test x$enable_assembler = xyes ; then
AC_CACHE_CHECK([if globals are prefixed by underscore],
...
...
@@ -268,12 +269,23 @@ foo:
ASM_TYPE_FUNCTION='#function'
fi
fi
AC_CACHE_CHECK([if .align assembly directive is logarithmic],
[nettle_cv_asm_align_log],
[GMP_TRY_ASSEMBLE([
.align 3
],
[nettle_cv_asm_align_log=yes],
[nettle_cv_asm_align_log=no])])
if test x$nettle_cv_asm_align_log = xyes ; then
ASM_ALIGN_LOG='yes'
fi
fi
AC_SUBST(ASM_SYMBOL_PREFIX)
AC_SUBST(ASM_ELF_STYLE)
AC_SUBST(ASM_TYPE_FUNCTION)
AC_SUBST(ASM_MARK_NOEXEC_STACK)
AC_SUBST(ASM_ALIGN_LOG)
AC_SUBST(SHLIBCFLAGS)
AC_SUBST(SHLIBMAJOR)
...
...
Write
Preview
Supports
Markdown
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!
Cancel
Please
register
or
sign in
to comment