Hi
Created a very basic example (I simple followed the 'Getting Started' tutorial) and this is the results:
1. There's no more function: void SetupPasses(Driver driver, PassBuilder passes); in ILibrary interface -> only void SetupPasses(Driver driver);
2. Files missing (?) -> actually when I'm running the CppSharp with CppSharp.ConsoleDriver.Run() I immediately receive an error:
An unhandled exception of type 'System.DllNotFoundException' occurred in CppSharp.Parser.CSharp.dll
Additional information: Unable to load DLL 'CppSharp.CppParser.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E)
3. I didn't understand how to build CppSharp from source :( I don't have an exact error right now :(
I did 'clone' llvm and clang latest version and build it. The build process complete successfully but CppSharp could not complie with it because of some missing (?) properties in some Macros (?)
Then I notice that I need a 'version' of llvm and clang and did:
$ git clone
http://llvm.org/git/llvm.git $ git reset --hard 0e8abfa6ed986c892ec723236e32e78fd9c47b88
but then CppSharp start complain about missing (?) cpp files in llvm :(
what I can do now ? Any suggestions ?