[pypy-commit] pypy default: Disable (temporarily?) impl_attach_gdb on Windows

arigo pypy.commits at gmail.com
Thu Mar 2 10:03:06 EST 2017


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r90488:529139a8ad35
Date: 2017-03-02 16:02 +0100
http://bitbucket.org/pypy/pypy/changeset/529139a8ad35/

Log:	Disable (temporarily?) impl_attach_gdb on Windows

diff --git a/rpython/rlib/debug.py b/rpython/rlib/debug.py
--- a/rpython/rlib/debug.py
+++ b/rpython/rlib/debug.py
@@ -524,7 +524,8 @@
     ll_attach = rffi.llexternal("AttachToVS", [], lltype.Void,
                                 compilation_info=make_vs_attach_eci())
     def impl_attach_gdb():
-        ll_attach()
+        #ll_attach()
+        print "AttachToVS is disabled at the moment (compilation failure)"
 
 register_external(attach_gdb, [], result=None,
                   export_name="impl_attach_gdb", llimpl=impl_attach_gdb)


More information about the pypy-commit mailing list