This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "DotGNU Portable.NET Just In Time compiler (libjit)".

The branch, master has been updated
       via  3892fe2988e308990a42fcaacfe92fb6683908d6 (commit)
      from  fa18fbd799c103c456c05c9a66d6996dfc7f701c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit/libjit.git/commit/?id=3892fe2988e308990a42fcaacfe92fb6683908d6

commit 3892fe2988e308990a42fcaacfe92fb6683908d6
Author: Aleksey Demakov <[email protected]>
Date:   Sat May 22 05:23:34 2010 +0700

    MacOS X x86-64 build fix

diff --git a/ChangeLog b/ChangeLog
index ed0e7cf..28bd540 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2010-05-22  Aleksey Demakov  <[email protected]>
+
+       * jit/jit-apply-x86-64.h (JIT_MEMCPY): fix build for MacOS X.
+
 2010-05-15  Klaus Treichel  <[email protected]>
 
        * jit/jit-instrinsic.c ((jit_float32_to_int, jit_float32_to_uint,
diff --git a/jit/jit-apply-x86-64.h b/jit/jit-apply-x86-64.h
index 3c39154..c2b452f 100644
--- a/jit/jit-apply-x86-64.h
+++ b/jit/jit-apply-x86-64.h
@@ -137,7 +137,11 @@ _jit_classify_struct(jit_param_passing_t *passing,
 #if defined(__GNUC__)
 
 #ifndef        JIT_MEMCPY
-#define        JIT_MEMCPY      "jit_mem...@plt"
+# if defined(__APPLE__) && defined(__MACH__)
+#  define JIT_MEMCPY "_jit_memcpy"
+# else
+#  define JIT_MEMCPY "jit_mem...@plt"
+# endif
 #endif
 
 /*

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog              |    4 ++++
 jit/jit-apply-x86-64.h |    6 +++++-
 2 files changed, 9 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
DotGNU Portable.NET Just In Time compiler (libjit)

_______________________________________________
dotgnu-pnet-commits mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/dotgnu-pnet-commits

Reply via email to