Re: [Mono-list] Missing some symbols in Windows package.

2015-10-23 Thread donggas90
OK, I got it. Should test in .NET first. Thanks for your effort, Robert. :) -- View this message in context: http://mono.1490590.n4.nabble.com/Missing-some-symbols-in-Windows-package-tp4666766p4666804.html Sent from the Mono - General mailing list archive at Nabble.com.

Re: [Mono-list] Missing some symbols in Windows package.

2015-10-22 Thread donggas90
Now, I added a bridging C# module between C++ host and runtime compiled C# assembly. but have a problem to load the compiled assembly. Here is a C# source file of the bridging module. The scheme of the module is almost same with the

Re: [Mono-list] Missing some symbols in Windows package.

2015-10-22 Thread Robert Jordan
On 22.10.2015 17:22, donggas90 wrote: How should I fix it? This is totally unrelated to Mono. Please check the docs of Assembly.Load(). AssemblyName is *not* a file name. Not "FullPath\__Intermediate.dll" and not "__Intermediate.dll". Just "__Intermediate". This is the (partial) assembly

Re: [Mono-list] Missing some symbols in Windows package.

2015-10-21 Thread donggas90
Thanks again, Robert. I already known about that jit init and cleanup have to call only once. and I'd tried the scheme what you said. Robert Jordan wrote > - compiling C# > - creating a domain > - loading an assembly > - executing code from this assembly > - unloading a domain but crashes

Re: [Mono-list] Missing some symbols in Windows package.

2015-10-21 Thread Robert Jordan
On 21.10.2015 11:53, donggas90 wrote: Thanks again, Robert. I already known about that jit init and cleanup have to call only once. and I'd tried the scheme what you said. It's not quite what I wrote. You're not handling domain creation inside the managed world. You may want to search the

Re: [Mono-list] Missing some symbols in Windows package.

2015-10-20 Thread Robert Jordan
On 20.10.2015 06:37, donggas90 wrote: Thanks, moljac. That's reasonable. Ultimately, my purpose is that edit C#, recompile it and invoke it in C++ runtume with the Mono API. so I had found some article about it in this forum such as this

Re: [Mono-list] Missing some symbols in Windows package.

2015-10-19 Thread donggas90
Thanks, moljac. That's reasonable. Ultimately, my purpose is that edit C#, recompile it and invoke it in C++ runtume with the Mono API. so I had found some article about it in this forum such as this . but that article

Re: [Mono-list] Missing some symbols in Windows package.

2015-10-18 Thread Miljenko Cvjetko
Hi On 20151017 05:39 , donggas90 wrote: Thanks for answer, Robert. BTW, I cannot understand. I've seen those functions in this video and its source code

Re: [Mono-list] Missing some symbols in Windows package.

2015-10-16 Thread Robert Jordan
On 16.10.2015 09:47, donggas90 wrote: mono_thread_push_appdomain_ref mono_thread_pop_appdomain_ref and the other symbols in 'mono/metadata/threads-types.h' are missing in Windows(4.0.4.4). beacause the header had not included in the package. If this exclusion is normal, those symbols had not

Re: [Mono-list] Missing some symbols in Windows package.

2015-10-16 Thread donggas90
Thanks for answer, Robert. BTW, I cannot understand. I've seen those functions in this video and its source code