NVPerfHUD AnyCpu apps

Started by
0 comments, last by sirob 15 years, 6 months ago
i am using c# with slimdx whereby the build target is ANY CPU. an explicit x86 compile works but is there a possibility to run any cpu builds with perfhud? thanks
Advertisement
This isn't just an NVPerfHUD issue, it's a SlimDX issue (and actually an issue with any Class Library linking unmanaged libraries).

Since the Any CPU setting would decide the compile target at runtime, depending on the target machine, SlimDX would need to be able to link with the correct DX library at runtime. Since that isn't possible, SlimDX can only link with either 32bit DX or 64bit DX. Whichever it picks would break if the application were compiled to the other setting.

I'd recommend you specifically specify the compile target (I also hear it's better for performance in some cases).
Sirob Yes.» - status: Work-O-Rama.

This topic is closed to new replies.

Advertisement