Author Topic: JIT Debugging  (Read 5569 times)

v6v

  • Clever
  • Fanatic
  • ***
  • Posts: 500
  • Has renamed his project to Galaxy!
    • View Profile
    • My Developer Page!
    • Email
JIT Debugging
« on: 2013-03-04, 04:00:08 AM »
I want to fix some issues that I'm having within the IDE, and to debug SGDK2IDE I would need to build SGDK2 with JIT debugging enabled as well as adding

<system.windows.forms jitDebugging="true" />

to the configuration.


..From what an exception window tells me.

Could you build SGDK2 with debugging enabled, bluemonkmn?

EDIT: Fixed the issue (If you have a frameset that appears first in the frameset dropdown with a frame size larger than 1024, you'll get an exception when trying to create a new tileset)
But I was just lucky this time, I might have an issue in the future that I might need to fix. Could you still build it with debugging enabled? :)
« Last Edit: 2013-03-04, 04:05:06 AM by #Sharp »

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
Re: JIT Debugging
« Reply #1 on: 2013-03-04, 06:15:23 AM »
Are you trying to avoid having to download the SGDK2 source code and build it yourself, or are you just not aware that that's possible/easy? If you're not aware, I can tell you how, otherwise I can build it this evening if I can remember. I'm not sure that JIT debugging is going to be much use to you without all the pieces you'd need to build it yourself anyway: SGDK2 source code and Visual Studio Express 2012 for Windows Desktop (free).
« Last Edit: 2013-03-04, 06:23:17 AM by bluemonkmn »

v6v

  • Clever
  • Fanatic
  • ***
  • Posts: 500
  • Has renamed his project to Galaxy!
    • View Profile
    • My Developer Page!
    • Email
Re: JIT Debugging
« Reply #2 on: 2013-03-04, 01:22:24 PM »
I missed something, where's the link to the source? (For the most recent version)

I have Visual Studio 2012, I didn't know there was a link to the source of the latest SGDK2IDE.

(Then again, I could have just ran it through something like a reflector?)  ;)

durnurd

  • Lead Lemming
  • Expert
  • Fanatic
  • *****
  • Posts: 1234
  • Games completed so far: 0
    • MSN Messenger - durnurd@hotmail.com
    • View Profile
    • Find My Ed
Re: JIT Debugging
« Reply #3 on: 2013-03-04, 04:45:53 PM »
You need to check it out using Subversion:

http://sourceforge.net/p/sgdk2/code/211/tree/trunk/

Or you can download a 7z copy of the source that was made manually at some point, which probably has (but is not always guaranteed to have) the latest code:

http://sourceforge.net/projects/sgdk2/files/  (use the "src" link)
Edward Dassmesser

v6v

  • Clever
  • Fanatic
  • ***
  • Posts: 500
  • Has renamed his project to Galaxy!
    • View Profile
    • My Developer Page!
    • Email
Re: JIT Debugging
« Reply #4 on: 2013-03-04, 10:53:38 PM »
Thank you! I'll modify things as I need.