dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[dotgnu-pnet-commits] [SCM] DotGNU Portable.NET Just In Time compiler (l


From: Aleksey Demakov
Subject: [dotgnu-pnet-commits] [SCM] DotGNU Portable.NET Just In Time compiler (libjit) branch, master, updated. 3892fe2988e308990a42fcaacfe92fb6683908d6
Date: Fri, 21 May 2010 22:24:39 +0000

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 <address@hidden>
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  <address@hidden>
+
+       * jit/jit-apply-x86-64.h (JIT_MEMCPY): fix build for MacOS X.
+
 2010-05-15  Klaus Treichel  <address@hidden>
 
        * 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      "address@hidden"
+# if defined(__APPLE__) && defined(__MACH__)
+#  define JIT_MEMCPY "_jit_memcpy"
+# else
+#  define JIT_MEMCPY "address@hidden"
+# 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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]