[llvm-commits] CVS: llvm/win32/config.h
Jeff Cohen
jeffc at jolt-lang.org
Thu Jan 19 20:34:58 PST 2006
Changes in directory llvm/win32:
config.h added (r1.1)
---
Log message:
Update Windows version of config.h to note availability of floor/floorf/ceil/ceilf.
Also pulled Windows-specific modifications to config.h.in to a separate file, so
that changes to it trigger regeneration of config.h (which doesn't happen when the
custom build step for it changes).
---
Diffs of the changes: (+24 -0)
config.h | 24 ++++++++++++++++++++++++
1 files changed, 24 insertions(+)
Index: llvm/win32/config.h
diff -c /dev/null llvm/win32/config.h:1.1
*** /dev/null Thu Jan 19 22:34:55 2006
--- llvm/win32/config.h Thu Jan 19 22:34:45 2006
***************
*** 0 ****
--- 1,24 ----
+ /* This file is appended to config.h.in to form the Windows version of
+ * config.h */
+
+ #define PACKAGE_NAME "LLVM (win32 vc7.1)"
+ #define PACKAGE_VERSION 1.4
+ #define HAVE_WINDOWS_H 1
+ #define HAVE_LIMITS_H 1
+ #define HAVE_SYS_STAT_H 1
+ #define HAVE_STDLIB_H 1
+ #define HAVE_STDIO_H 1
+ #define HAVE_STRING_H 1
+ #define SHLIBEXT ".lib"
+ #define error_t int
+ #define HAVE_ERRNO_H 1
+ #define LTDL_DLOPEN_DEPLIBS 1
+ #define HAVE_CEIL 1
+ #define HAVE_CEILF 1
+ #define HAVE_FLOOR 1
+ #define HAVE_FLOORF 1
+ #define LTDL_OBJDIR "_libs"
+ #define LTDL_SHLIBPATH_VAR "PATH"
+ #define LTDL_SHLIB_EXT ".dll"
+ #define LTDL_SYSSEARCHPATH ""
+ #define LLVM_ON_WIN32 1
More information about the llvm-commits
mailing list