1
vote
2answers
220 views
What does ‘useLegacyV2RuntimeActivationPolicy’ do in the .NET 4 config?
While converting a project that used SlimDX, and therefore has unmanaged code, to .NET 4.0 I ran into the following error:
Mixed mode assembly is built against version 'v2.0.50 …
1
vote
2answers
57 views
How to determine which C/C++ objects use most memory
Hi!
I have a mixed mode application (managed and native) which has a high memory footprint. I already have found out that most of the memory is allocated by native code. I am not …
0
votes
0answers
74 views
Native C Dll calling C++/CLI Mixed Mode Dll - Unhandled Exception
I have a Native C Dll that is dynamically loaded by a legacy application. The intent of this dll is to allow overriding of application behavior based on certain application events …
1
vote
1answer
149 views
.NET mixed multi-file assembly
I need to create a .NET assembly composed of 2 modules: 1 internal (in the DLL) with native code and 1 external (in a .netmodule file).
This would be easy to do, except for the na …
2
votes
1answer
245 views
Mixed language statically linking with gfortran and gcc
Hi, I have some code written in C and Fortran that I want to compile into a statically-linked executable. If I compile the code dynamically (using the -fno-underscoring option for …
0
votes
1answer
81 views
How to get a full stacktrace from a crashed mixed mode exe/dll ?
Hi !
I wrote an application in C++/CLR. It uses a native lib/dll. On rare occasions, it crashes insider this native dll. I then get a stacktrace, but only up to the managed part, …
1
vote
3answers
527 views
Using mixed DLLs from /clr:pure projects
I'm building a project along with a Dll.
The Dll must support native code so I declared it as a /clr.
My project was initialy also a /clr project and everything was fine. However …
0
votes
1answer
98 views
Mixed Mode C++ DLL function call failure when app launched from network share. Called from unmanaged c application.
Mixed-mode DLL called from native C application fails to load:
An unhandled exception of type 'System.IO.FileLoadException' occurred in Unknown Module.
Additional information: Cou …
0
votes
4answers
247 views
Help postmorten debugging of a mixed mode Win32 application
Here's the situation:
Background
I have a mixed mode .NET/Native application developed in Visual Studio 2008.
What I mean by mixed mode is that the front end is written in C++ …
2
votes
4answers
505 views
Memory leak in Mixed Mode C++/CLR application
I'm having problems with a slow memory leak in my mixed mode C++/CLR .NET application.
(It's C++ native static libraries linked into a VS2008 C++/CLR Windows Forms app with the "/ …
1
vote
1answer
125 views
Mixed mode MFC application not intializing correctly in VS2008
I have converted a mixed mode MFC application from VS2005 to VS2008. It is compiling OK but when starting the application I get an assert in afxwin1.inl because afxCurrentResourceH …
0
votes
0answers
144 views
Access Violation probem with unhandled managed Exceptions in managed C++ .NET application
This is actually a solved problem, but it's so esoteric I thought I'd share it for other users.
Also perhaps others might suggest reasons?
Anyway, I'm working on a "mixed mode" . …
0
votes
1answer
34 views
Mixing different versions of libraries in code for Linux.
The program that I am working on is statically linked to a 3rdPartyLibrary.lib.
We wanted to take advantage of a newer version of the same 3rdPartyLibrary, say 3rdPartyLibraryNewV …
1
vote
5answers
702 views
Mixed Mode Library and CRT Dependencies - HELP
Alright, after doing a ton of research and trying almost every managed CPP Redist I can find as well as trying to copy my DLLs locally to the executing directory of the app I canno …
2
votes
4answers
473 views
Visual Studio: Garbled debug watch of std::string’s ?
When I'm debugging C++ mixed (managed/unmanaged) projects in Visual Studio 2005, I often get weird data from the debug watches, like below :
(btw, the variable i_processName is a c …
