Jump to content
The Dark Mod Forums

Recommended Posts

Posted

The last official release doesn't contain the fix for patch rendering on nVidia hardware, which is the subject of the recent Github commits.

 

If there aren't any Windows developers available I can in theory make a Windows release, but it might take a while to get set up with all the necessary tools to build it. Last time I tried developing on Windows I had to install various SDKs in a particular order and even edit some configuration files in the MSVC installation directory in order to build DR.

Posted

I can compile 32bit myself (at least I did for the last preview build), but 64bit requires MSVC2013 (or Pro version of MSVC2010), which I don't have. I recall greebo was the one who built it last time. Not sure if he is busy with wxWidgets and can't compile or something else.

Posted

Okay so

VS2010 Release x64 build, over 940 Errors before build auto stopped.

VS2010 Release Win32 build, 1129 errors, 18 succeeded, 23 failed.

VS2012 Release x64 build, 7 errors, 41 succeeded, 1 failed

 

Error 494 error LNK2038: mismatch detected for '_MSC_VER': value '1700' doesn't match value '1600' in MathTest.obj E:\DarkRadiantSRC\DarkRadiant\test\mathlib.lib(Matrix4.obj)
Error 495 error LNK2001: unresolved external symbol "__declspec(dllimport) void __cdecl std::_Xbad_alloc(void)" (__imp_?_Xbad_alloc@std@@YAXXZ) E:\DarkRadiantSRC\DarkRadiant\test\mathlib.lib(Matrix4.obj)
Error 496 error LNK2001: unresolved external symbol "__declspec(dllimport) char const * __cdecl std::_Syserror_map(int)" (__imp_?_Syserror_map@std@@YAPEBDH@Z) E:\DarkRadiantSRC\DarkRadiant\test\mathlib.lib(Matrix4.obj)
Error 497 error LNK2001: unresolved external symbol "__declspec(dllimport) char const * __cdecl std::_Winerror_map(int)" (__imp_?_Winerror_map@std@@YAPEBDH@Z) E:\DarkRadiantSRC\DarkRadiant\test\mathlib.lib(Matrix4.obj)
Error 498 error LNK2001: unresolved external symbol "__declspec(dllimport) public: virtual void __cdecl std::basic_ostream<char,struct std::char_traits<char> >::_Add_vtordisp2(void)" (__imp_?_Add_vtordisp2@?$basic_ostream@DU?$char_traits@D@std@@@std@@UEAAXXZ) E:\DarkRadiantSRC\DarkRadiant\test\mathlib.lib(Matrix4.obj)
Error 499 error LNK2001: unresolved external symbol "__declspec(dllimport) public: virtual void __cdecl std::basic_istream<char,struct std::char_traits<char> >::_Add_vtordisp1(void)" (__imp_?_Add_vtordisp1@?$basic_istream@DU?$char_traits@D@std@@@std@@UEAAXXZ) E:\DarkRadiantSRC\DarkRadiant\test\mathlib.lib(Matrix4.obj)
Error 500 error LNK1120: 5 unresolved externals E:\DarkRadiantSRC\DarkRadiant\tools\test\testsuite.exe

 

VS2012 Release x64 build, 11 errors, 41 succeeded, 1 failed

 

Error 455 error LNK2038: mismatch detected for '_MSC_VER': value '1700' doesn't match value '1600' in MathTest.obj E:\DarkRadiantSRC\DarkRadiant\test\mathlib.lib(Matrix4.obj)
Error 456 error LNK2001: unresolved external symbol "__declspec(dllimport) void __cdecl std::_Xbad_alloc(void)" (__imp_?_Xbad_alloc@std@@YAXXZ) E:\DarkRadiantSRC\DarkRadiant\test\mathlib.lib(Matrix4.obj)
Error 457 error LNK2001: unresolved external symbol "__declspec(dllimport) char const * __cdecl std::_Syserror_map(int)" (__imp_?_Syserror_map@std@@YAPBDH@Z) E:\DarkRadiantSRC\DarkRadiant\test\mathlib.lib(Matrix4.obj)
Error 458 error LNK2001: unresolved external symbol "__declspec(dllimport) char const * __cdecl std::_Winerror_map(int)" (__imp_?_Winerror_map@std@@YAPBDH@Z) E:\DarkRadiantSRC\DarkRadiant\test\mathlib.lib(Matrix4.obj)
Error 459 error LNK2001: unresolved external symbol "__declspec(dllimport) public: virtual void __thiscall std::basic_ostream<char,struct std::char_traits<char> >::_Add_vtordisp2(void)" (__imp_?_Add_vtordisp2@?$basic_ostream@DU?$char_traits@D@std@@@std@@UAEXXZ) E:\DarkRadiantSRC\DarkRadiant\test\mathlib.lib(Matrix4.obj)
Error 460 error LNK2001: unresolved external symbol "__declspec(dllimport) public: virtual void __thiscall std::basic_istream<char,struct std::char_traits<char> >::_Add_vtordisp1(void)" (__imp_?_Add_vtordisp1@?$basic_istream@DU?$char_traits@D@std@@@std@@UAEXXZ) E:\DarkRadiantSRC\DarkRadiant\test\mathlib.lib(Matrix4.obj)
Error 461 error LNK2001: unresolved external symbol __libm_sse2_acos_precise E:\DarkRadiantSRC\DarkRadiant\test\mathlib.lib(Matrix4.obj)
Error 462 error LNK2001: unresolved external symbol __libm_sse2_cos_precise E:\DarkRadiantSRC\DarkRadiant\test\mathlib.lib(Matrix4.obj)
Error 463 error LNK2001: unresolved external symbol __libm_sse2_sin_precise E:\DarkRadiantSRC\DarkRadiant\test\mathlib.lib(Matrix4.obj)
Error 464 error LNK2001: unresolved external symbol __libm_sse2_sqrt_precise E:\DarkRadiantSRC\DarkRadiant\test\mathlib.lib(Matrix4.obj)
Error 465 error LNK1120: 9 unresolved externals E:\DarkRadiantSRC\DarkRadiant\tools\test\testsuite.exe

I always assumed I'd taste like boot leather.

 

Posted

Well there's no VS2013 solution, just 2010 and 2012. I nuked my local copy of DR and recloned. Installing VS2012 on my laptop right now. I'll try again.

I always assumed I'd taste like boot leather.

 

Posted

The last official release doesn't contain the fix for patch rendering on nVidia hardware, which is the subject of the recent Github commits.

 

If there aren't any Windows developers available I can in theory make a Windows release, but it might take a while to get set up with all the necessary tools to build it. Last time I tried developing on Windows I had to install various SDKs in a particular order and even edit some configuration files in the MSVC installation directory in order to build DR.

 

By chance, were you able to build Win 64 build of DR ?

Posted

I can upload a 1.8.1 release, if this is still needed.

 

It would be nice to have recent github build, due to performance improvements. Unless you think it's not that different from preview # 4 build, then I guess there is no need.

Posted

Installed just perfect on my machine. Used my old preferences.

BTW shouldn't it not do that? If I uninstall DarkRadiant 1.7, then install 1.8.1, shouldn't first time install pop up asking for location of the game?

Doesn't that mean the uninstaller is leaving stuff behind?

I always assumed I'd taste like boot leather.

 

Posted

The user settings are stored in C:\Users\user\AppData\Roaming\DarkRadiant and is not removed when uninstalling, I think this is the default for most programs?

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recent Status Updates

    • JackFarmer

      "The Year of the Rat." 
      😄

      Al Stewart must be proud of you!
      Happy testing!
      @MirceaKitsune
      · 1 reply
    • datiswous

      I posted about it before, but I think the default tdm logo video looks outdated. For a (i.m.o.) better looking version, you can download the pk4 attached to this post and plonk it in your tdm root folder. Every mission that starts with the tdm logo then starts with the better looking one. Try for example mission COS1 Pearls and Swine.
      tdm_logo_video.pk4
      · 2 replies
    • JackFarmer

      Kill the bots! (see the "Who is online" bar)
      · 3 replies
    • STiFU

      I finished DOOM - The Dark Ages the other day. It is a decent shooter, but not as great as its predecessors, especially because of the soundtrack.
      · 5 replies
×
×
  • Create New...