|
[Sbcl-commits] CVS: sbcl/contrib/sb-grovel def-to-lisp.lisp, 1.31,
1.32
From: Cyrus Harmon <slyrus@us...> - 2010-01-21 05:09
|
Update of /cvsroot/sbcl/sbcl/contrib/sb-grovel
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv12631/contrib/sb-grovel
Modified Files:
def-to-lisp.lisp
Log Message:
1.0.34.9: darwin/x86-64 sb-posix:stat fixes from Kei Suzuki
* sb-unix:unix-stat/lstat/fstat return the 32bit inode with x86 and
the 64bit inode with x86-64,
* sb-posix:stat/lstat/fstat get stat values using the old stat calls
with x86 and the new ones with x86-64
* re-enable now-working sb-posix stat tests
Index: def-to-lisp.lisp
===================================================================
RCS file: /cvsroot/sbcl/sbcl/contrib/sb-grovel/def-to-lisp.lisp,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -d -r1.31 -r1.32
--- def-to-lisp.lisp 31 Aug 2009 06:11:12 -0000 1.31
+++ def-to-lisp.lisp 21 Jan 2010 05:09:44 -0000 1.32
@@ -205,10 +205,16 @@
'("-D_LARGEFILE_SOURCE"
"-D_LARGEFILE64_SOURCE"
"-D_FILE_OFFSET_BITS=64")
- #+(and x86-64 darwin)
- '("-arch" "x86_64")
+ #+(and x86-64 darwin inode64)
+ '("-arch" "x86_64"
+ "-mmacosx-version-min=10.5"
+ "-D_DARWIN_USE_64_BIT_INODE")
+ #+(and x86-64 darwin (not inode64))
+ '("-arch" "x86_64"
+ "-mmacosx-version-min=10.4")
#+(and x86 darwin)
- '("-arch" "i386")
+ '("-arch" "i386"
+ "-mmacosx-version-min=10.4")
#+(and x86-64 sunos) '("-m64")
(list "-o"
(namestring tmp-a-dot-out)
|
| Thread | Author | Date |
|---|---|---|
| [Sbcl-commits] CVS: sbcl/contrib/sb-grovel def-to-lisp.lisp, 1.31, 1.32 | Cyrus Harmon <slyrus@us...> |