Bay 12 Games Forum

Please login or register.

Login with username, password and session length
Advanced search  
Pages: 1 ... 197 198 [199] 200 201 ... 222

Author Topic: Dwarf Therapist (Maintained Branch) v.37.0 | DF 42.06  (Read 967852 times)

Boogeyman

  • Bay Watcher
    • View Profile
Re: Dwarf Therapist (Maintained Branch) v.37.0 | DF 42.06
« Reply #2970 on: March 12, 2017, 12:11:36 pm »

Quote
What kind of regional settings is your Windows and language also?

Finland / Finnish.
Logged

PleaseBugMeNot

  • Bay Watcher
    • View Profile
Re: Dwarf Therapist (Maintained Branch) v.37.0 | DF 42.06
« Reply #2971 on: March 12, 2017, 12:40:19 pm »

Quote
What kind of regional settings is your Windows and language also?

Finland / Finnish.

Ok, I will have to put loads of fine debug outputs in the Traits, skills, attributes, preferences loading and send you the debug exe, so we can see where does it crash. This thing is huge.. it might crash for whatever reason. But that I can't do right now because I have to go.

Here is an exe file with the roleRatings disabled. https://dl.dropboxusercontent.com/u/94651132/DwarfTherapistNoRoleRatings.zip
Can you test if it runs?
Logged

wooks

  • Bay Watcher
    • View Profile
Re: Dwarf Therapist (Maintained Branch) v.37.0 | DF 42.06
« Reply #2972 on: March 12, 2017, 01:03:41 pm »

When trying to run the x64 win version in the pack by PeridexisErrant I get 2 .dll system errors for missing VCRUNTIME140.dll and MSVCP140.dll

Windows 10 64bit

You need to install Microsoft Visual C++ 2015 Redistributable x64: https://www.microsoft.com/en-us/download/details.aspx?id=53587

Resolved the issue perfectly <3
Logged
In a game like Dwarf Fortress, going to the wiki being cheating is like saying bringing a parachute is cheating for skydiving.
"Has it been 4 days? Better check if my penis is still there again."

orost

  • Bay Watcher
    • View Profile
Re: Dwarf Therapist (Maintained Branch) v.37.0 | DF 42.06
« Reply #2973 on: March 12, 2017, 02:57:28 pm »

@PleaseBugMeNot

I tried using your version on 0.43.05 64-bit (after importing the correct memory map) and it segfaults on reading dwarves. Here's a backtrace, if you get me a version with debug symbols I could get a better one.

Spoiler (click to show/hide)
Logged

shovelmonkey

  • Bay Watcher
    • View Profile
Re: Dwarf Therapist (Maintained Branch) v.37.0 | DF 42.06
« Reply #2974 on: March 12, 2017, 03:20:08 pm »

With windows 10, and having downloaded the openssl libs, working perfectly so far. Great work, PleaseBugMeNot, and thank you!

Apologies on quoting myself.  :-[


Currently through three migratory waves, and still working great.
Logged
Reach out and crush someone!

Hello71

  • Bay Watcher
    • View Profile
Re: Dwarf Therapist (Maintained Branch) v.37.0 | DF 42.06
« Reply #2975 on: March 12, 2017, 04:06:01 pm »

@PleaseBugMeNot

I tried using your version on 0.43.05 64-bit (after importing the correct memory map) and it segfaults on reading dwarves. Here's a backtrace, if you get me a version with debug symbols I could get a better one.

Spoiler (click to show/hide)

why did you compile it in 32 bit mode
Logged

orost

  • Bay Watcher
    • View Profile
Re: Dwarf Therapist (Maintained Branch) v.37.0 | DF 42.06
« Reply #2976 on: March 12, 2017, 04:09:23 pm »

If you're asking me, I didn't compile it, I'm using PleaseBugMeNot's release. I don't know why it's 32-bit, but it's supposed to work with 64-bit DF.
Logged

PleaseBugMeNot

  • Bay Watcher
    • View Profile
Re: Dwarf Therapist (Maintained Branch) v.37.0 | DF 42.06
« Reply #2977 on: March 12, 2017, 05:37:16 pm »

If you're asking me, I didn't compile it, I'm using PleaseBugMeNot's release. I don't know why it's 32-bit, but it's supposed to work with 64-bit DF.

Something is wrong... the pointers look like x32bit and the exe is running in wow64 simulator. The exe is compiled with amd64 64bit compiler. I am a C++ noob but the version should be 64bit.
Here:
Spoiler (click to show/hide)

Anyway
here is a Release exe with debug symbols: https://dl.dropboxusercontent.com/u/94651132/DT_with_debugsymb.zip

Here is compiled exe Debug with symbols and debug Qt dlls: https://dl.dropboxusercontent.com/u/94651132/DTdebug.zip
« Last Edit: March 12, 2017, 05:46:37 pm by PleaseBugMeNot »
Logged

orost

  • Bay Watcher
    • View Profile
Re: Dwarf Therapist (Maintained Branch) v.37.0 | DF 42.06
« Reply #2978 on: March 12, 2017, 05:47:00 pm »

It's definitely a 32-bit executable:

Code: [Select]
$ file DwarfTherapist.exe
DwarfTherapist.exe: PE32 executable (GUI) Intel 80386 (stripped to external PDB), for MS Windows

As for the debug versions, neither runs. The first:

Code: [Select]
(gdb) r
Starting program: /c/Users/szymon/Desktop/DT_with_debugsymb/DwarfTherapist.exe
[New Thread 1684.0xa04]
gdb: unknown target exception 0xc0000139 at 0x7ffa0fbacdd0
During startup program exited with code 0xc0000139.

(BTW - can you make Visual Studio output some sort of portable debug info format? GDB can't read PDB. I could probably get another debugger going but I'd rather not if possible)

(Alternatively I'll just build it myself if you give me the source)

The second wants ucrtbased.dll... I'm not sure what that is. Googling suggests it might be a Windows 10 thing, I'm on 8.1.
« Last Edit: March 12, 2017, 05:57:28 pm by orost »
Logged

PleaseBugMeNot

  • Bay Watcher
    • View Profile
Re: Dwarf Therapist (Maintained Branch) v.37.0 | DF 42.06
« Reply #2979 on: March 12, 2017, 06:12:17 pm »

It's definitely a 32-bit executable:

Code: [Select]
$ file DwarfTherapist.exe
DwarfTherapist.exe: PE32 executable (GUI) Intel 80386 (stripped to external PDB), for MS Windows

As for the debug versions, neither runs. The first:

Code: [Select]
(gdb) r
Starting program: /c/Users/szymon/Desktop/DT_with_debugsymb/DwarfTherapist.exe
[New Thread 1684.0xa04]
gdb: unknown target exception 0xc0000139 at 0x7ffa0fbacdd0
During startup program exited with code 0xc0000139.

(BTW - can you make Visual Studio output some sort of portable debug info format? GDB can't read PDB. I could probably get another debugger going but I'd rather not if possible)

(Alternatively I'll just build it myself if you give me the source)

The second wants ucrtbased.dll... I'm not sure what that is. Googling suggests it might be a Windows 10 thing, I'm on 8.1.

I have 32bit DT compiled with mingwx32 and one with MSVCx64 as amd64. It can't be a 32 bit. You probably have some other exe. Right click on it, compatibility tab, set compatibility mode and if it starts with VIsta, it is x64. If it has XP is 32bit.

Here is a check with

Spoiler (click to show/hide)
Logged

orost

  • Bay Watcher
    • View Profile
Re: Dwarf Therapist (Maintained Branch) v.37.0 | DF 42.06
« Reply #2980 on: March 12, 2017, 06:17:14 pm »

Sorry, I should have been more specific. The one I pulled from the starter pack you posted on Friday, the one that runs but crashes on reading dwarves, that one is 32-bit. The two you posted today are both 64-bit.
Logged

PleaseBugMeNot

  • Bay Watcher
    • View Profile
Re: Dwarf Therapist (Maintained Branch) v.37.0 | DF 42.06
« Reply #2981 on: March 12, 2017, 06:21:41 pm »

Sorry, I should have been more specific. The one I pulled from the starter pack you posted on Friday, the one that runs but crashes on reading dwarves, that one is 32-bit. The two you posted today are both 64-bit.

Just checked the starter pack.. DT version there is x64bit: PeridexisErrant's Starter Pack 0.43.05-r02
Logged

PleaseBugMeNot

  • Bay Watcher
    • View Profile
Re: Dwarf Therapist (Maintained Branch) v.37.0 | DF 42.06
« Reply #2982 on: March 12, 2017, 06:23:54 pm »

Either way: https://dl.dropboxusercontent.com/u/94651132/DwarfTherapist43.5.1X64.zip
This is the version I've sent PeridexisErrant. Can you check it out?
Logged

orost

  • Bay Watcher
    • View Profile
Re: Dwarf Therapist (Maintained Branch) v.37.0 | DF 42.06
« Reply #2983 on: March 12, 2017, 06:24:47 pm »

That's not the same one that I have. I must have accidentally downloaded the wrong package back Friday. I re-downloaded and it works.

I'm sorry for wasting your time, PleaseBugMeNot.
Logged

PleaseBugMeNot

  • Bay Watcher
    • View Profile
Re: Dwarf Therapist (Maintained Branch) v.37.0 | DF 42.06
« Reply #2984 on: March 12, 2017, 06:27:01 pm »

That's not the same one that I have. I must have accidentally downloaded the wrong package back Friday. I re-downloaded and it works.

I'm sorry for wasting your time, PleaseBugMeNot.

No problem, I've learnt some new things which is always good :D
Logged
Pages: 1 ... 197 198 [199] 200 201 ... 222