mirror of git://sourceware.org/git/glibc.git
Add __ILP32__ check when defining __WORDSIZE
This commit is contained in:
parent
c7a6ab72e9
commit
7e73e17d3f
|
|
@ -1,3 +1,8 @@
|
||||||
|
2012-04-13 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
|
* sysdeps/x86_64/bits/wordsize.h (__WORDSIZE): Also check
|
||||||
|
__ILP32__.
|
||||||
|
|
||||||
2012-04-13 Antoine Balestrat <merkil33@gmail.com>
|
2012-04-13 Antoine Balestrat <merkil33@gmail.com>
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
|
* sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
/* Determine the wordsize from the preprocessor defines. */
|
/* Determine the wordsize from the preprocessor defines. */
|
||||||
|
|
||||||
#if defined __x86_64__
|
#if defined __x86_64__ && !defined __ILP32__
|
||||||
# define __WORDSIZE 64
|
# define __WORDSIZE 64
|
||||||
# define __WORDSIZE_COMPAT32 1
|
# define __WORDSIZE_COMPAT32 1
|
||||||
#else
|
#else
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue