Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [PATCH] 64-bit python support
@ 2011-05-10 12:57 Ruben Van Boxem
  0 siblings, 0 replies; 5+ messages in thread
From: Ruben Van Boxem @ 2011-05-10 12:57 UTC (permalink / raw)
  To: gdb-patches, mingw64

[-- Attachment #1: Type: text/plain, Size: 606 bytes --]

Hi,

Attached is a patch that tells gdb-python to use the Py_InitModule4_64
function instead of Py_InitModule for 64-bit builds.

The latter is not in the official Python x64 Windows dll, and from
looking around on the net, neither is it present on 64-bit linux
Python libraries (can't say that for sure though). This patch allows a
successful build with mingw-w64.

Here is a link to the rationale for the different function name on the
Python website:
http://www.python.org/dev/peps/pep-0353/#specification

The patch was made using the 7.3 branch. Please comment on and/or OK
this patch. Thanks!

Ruben

[-- Attachment #2: gdb-python64.patch --]
[-- Type: text/x-patch, Size: 1014 bytes --]

diff --git a/gdb/python/py-evts.c b/gdb/python/py-evts.c
index 50c05f3..3a541b4 100644
--- a/gdb/python/py-evts.c
+++ b/gdb/python/py-evts.c
@@ -44,8 +44,11 @@ add_new_registry (eventregistry_object **registryp, char *name)
 void
 gdbpy_initialize_py_events (void)
 {
+#if defined(__x86_64__)
+  gdb_py_events.module = Py_InitModule4_64 ("events", NULL);
+#else
   gdb_py_events.module = Py_InitModule ("events", NULL);
-
+#endif
   if (!gdb_py_events.module)
     goto fail;
 
diff --git a/gdb/python/python.c b/gdb/python/python.c
index 90d5dc8..3323433 100644
--- a/gdb/python/python.c
+++ b/gdb/python/python.c
@@ -1013,7 +1013,11 @@ Enables or disables printing of Python stack traces."),
   Py_Initialize ();
   PyEval_InitThreads ();
 
+#if defined(__x86_64__)
+  gdb_module = Py_InitModule4_64 ("gdb", GdbMethods);
+#else
   gdb_module = Py_InitModule ("gdb", GdbMethods);
+#endif
 
   /* The casts to (char*) are for python 2.4.  */
   PyModule_AddStringConstant (gdb_module, "VERSION", (char*) version);

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-05-10 15:03 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <BANLkTi=2gphWs2p_5V+wTJMUAkjHDT79uQ__10646.2358417504$1305032253$gmane$org@mail.gmail.com>
2011-05-10 14:29 ` [PATCH] 64-bit python support Tom Tromey
2011-05-10 14:32   ` Ruben Van Boxem
     [not found]   ` <BANLkTikrs+AFqqiQEwQfmD=c3wicjSdWYA__43532.2708603509$1305037944$gmane$org@mail.gmail.com>
2011-05-10 14:38     ` Tom Tromey
2011-05-10 15:03       ` Ruben Van Boxem
2011-05-10 12:57 Ruben Van Boxem

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox