João Matos
João Matos
As the title says, the latest Nuget package for `libllvm` is missing C API symbols. ``` joao@joao-HP:~/dev/dotnet/corert/packages/libllvm$ llvm-nm-6.0 5.0.1/runtimes/linux-x64/native/libLLVM.so | grep LLVMModuleCreateWithName 0000000000838d20 T LLVMModuleCreateWithName 0000000000838db0 T LLVMModuleCreateWithNameInContext joao@joao-HP:~/dev/dotnet/corert/packages/libllvm$ llvm-nm-6.0...
So while looking through Clang MS ABI codegen code I noticed some ctors can have an extra implicit parameter which we do not handle. See [`MicrosoftCXXABI::addImplicitConstructorArgs`](https://github.com/llvm-mirror/clang/blob/master/lib/CodeGen/MicrosoftCXXABI.cpp#L1496). Additionally the parameter position...
Fixes https://github.com/mono/Embeddinator-4000/issues/581.
As reported by @chambm: https://gitter.im/managed-interop/Lobby?at=59f0c7bb0182fa5f4d78aef8
## Description Adds initial support for react-native-windows. The more advanced customization options for each gesture recognizer were not implemented as part of this initial pass. They will be implemented later...
This has caught me by surprise, but it looks like modules `_preload.lua` is only called for built-in embedded modules in `_premake_main.lua:preloadModules`. It's a little bit weird, I would expect `_preload.lua`...