Displaying 2 results from an estimated 2 matches for "1001004".
Did you mean:
1001000
2008 Oct 22
1
[LLVMdev] llvm 2.4, gfortran and darwin?
Does anyone know if the issue with building the gfortran
front-end on Darwin will be addressed for llvm 2.4? The last
time a checked a few weeks back, llvm-gcc-4.2 svn was still
producing the linkage error...
> Undefined symbols:
> "_create_init_utf16_var", referenced from:
> _darwin_build_constant_cfstring in libbackend.a(darwin.o)
I believe the analysis of this was
2004 Dec 27
0
[patch] some buildsystem fixes for crosscompiling
...c 14 07:41:50 2004
@@ -642,34 +642,7 @@
]
)
-AC_MSG_CHECKING(for zlib 1.1.4 or greater)
-AC_TRY_RUN([
-#include <zlib.h>
-int main()
-{
- int a, b, c, v;
- if (sscanf(ZLIB_VERSION, "%d.%d.%d", &a, &b, &c) != 3)
- exit(1);
- v = a*1000000 + b*1000 + c;
- if (v >= 1001004)
- exit(0);
- exit(2);
-}
- ],
- AC_MSG_RESULT(yes),
- [ AC_MSG_RESULT(no)
- if test -z "$zlib_check_nonfatal" ; then
- AC_MSG_ERROR([*** zlib too old - check config.log ***
-Your reported zlib version has known security problems. It's possible your
-vendor has fixed these proble...