-2

So I have an interesting huge trouble... I downloaded newest ASIO SDK, compiled the host sample and it is crashing (or doing nonsense...) with several ASIO drivers if ALL of these conditions are met:

1) Compiled using MSVC2012 or MSVC2013 (MSVC2005 is fine)
2) 64-bit build (32-bit is fine)
3) Run on Windows 8 (Windows 7 are fine)

Any ideas what the hell is wrong there?

Vojtěch Melda Meluzín
  • 1,117
  • 3
  • 11
  • 22

1 Answers1

0

Ok, found a solution - linker option:

/DYNAMICBASE:NO

It seems that there is bug in ASIO drivers making it cause problems with address above 32-bit, so without this option Windows 8 may place the app anywhere in the address space (probably hack protection) and whoops...

Vojtěch Melda Meluzín
  • 1,117
  • 3
  • 11
  • 22