Displaying 2 results from an estimated 2 matches for "9223372036854775807ll".
Did you mean:
9223372036854775807
2003 Apr 11
0
compilation errors
...alue for an off_t */
I simply comment out the definition from config.h .
Second, in src/lib/mmap-anon.c there's a preprocessor conditional:
#if SSIZE_T_MAX >= LLONG_MAX
(etc)
Unfortunately /usr/include/machine/limits.h defines LLONG_MAX thusly:
#define LLONG_MAX (__extension__(9223372036854775807LL))
(evidently to suppress pedantic warnings about the gcc long long
constant extension) but the cpp prepreprocessor stumbles over this
comparison. This might be fixed in a later gcc, I dunno- it's gcc
2.95.2 here.
Yours,
-mm-
2005 Sep 19
1
ssh hangs or gives Segmentation fault
...#define __GNUC__ 3
#define __LDBL_MIN_EXP__ (-16381)
#define __tune_i586__ 1
#define __LDBL_MAX_10_EXP__ 4932
#define __DBL_EPSILON__ 2.2204460492503131e-16
#define __DBL_MAX__ 1.7976931348623157e+308
#define __DBL_MAX_EXP__ 1024
#define __FLT_DENORM_MIN__ 1.40129846e-45F
#define __LONG_LONG_MAX__ 9223372036854775807LL
#define __FLT_MAX__ 3.40282347e+38F
#define __GXX_ABI_VERSION 102
#define __FLT_MIN_10_EXP__ (-37)
#define __FLT_MIN_EXP__ (-125)
#define i386 1
#define __GNUC_MINOR__ 3
#define __DBL_MAX_10_EXP__ 308
#define __LDBL_DENORM_MIN__ 3.64519953188247460253e-4951L
#define __DBL_MIN__ 2.2250738585072014e-...