Kouji Matsui
Kouji Matsui
I bit understood your strategy :) Would you tell me about my understanding is correct: 1. Assuming that the published symbols that nanoFramework.CoreLibrary contains reasonable scale of symbols, 2. Build...
I understood it! Would you make ready to review for branch `feature/implement-ilcodes` before do it? It already long commit tree so I wanna review before continue this idea. (I feel...
```c __stack0_0 = 123; __stack1_0 = 456; __stack0_0 = Foo_Add(__stack0_0, __stack1_0); ``` Reduce expression at translation time: ```c __stack0_0 = Foo_Add(123, 456); ``` * We have to trace flow and...
Wrote strategies my blog (Japanese) : https://www.kekyo.net/2018/11/10/6756 And what problem for: https://gist.github.com/kekyo/abcb76d0ca4ae31c972bdf676bded123
726bb8b19c5d7327e657a5f7f57c031d224f9c3b Splitted and did declaration for execution frame structure outside the function. Therefore we are ready to use these execution frame structure at the exception handler.
- [ ] Filter block - [ ] Fault block
Related info: 1 day hacking "IL2C on UE4" * Center CLR try dev 12: https://centerclr.connpass.com/event/144906/ * https://github.com/ayumax/IL2CTest_OnUE4
@ayumax I found a problem for what failing. We already shared the Unreal Engine 4's vcxproj driven by NMake. Causes using NMake because it doesn't have a lot of lacks...
OK, I released new 0.4.90 packages yesterday, please check these package contained items (it's nuget, doesn't zip format): * [IL2C.Runtime contains source, header (and cmake) files](https://www.myget.org/feed/il2c/package/nuget/IL2C.Runtime) * [IL2C.Runtime.msvc contains runtime...
Seems to be strange error for link-time code generation related at: https://stackoverflow.com/questions/26279291/what-causes-linker-warning-msil-netmodule-or-module-compiled-with-gl-found-r Do you know link-time code generation option on Unreal Engine 4 and try to enable it? Hmm... too...