Is it possible to compile multiple languages together in order to get the best of the different languages.
相关问题
- Angular: ngc or tsc?
- How do shader compilers work?
- Where is the implementation of included C++/C head
- C++ Builder - Difference between Lib and Res
- Why does constructing std::string(0) not emit a co
相关文章
- How to force Delphi compiler to display all hints
- Xcode - How to change application/project name : w
- What other neat tricks does the SpecialNameAttribu
- Are there any reasons not to use “this” (“Self”, “
- What is the purpose of “-Wa,option” in GCC? [close
- php module does not compile. Does not recognize “s
- Why does the C++ compiler give errors after lines
- Can a compiler inline a virtual function if I use
If you're using .net, you can compile your projects in different languages to netmodules and then link them into a single dll/exe. Visual Studio doesn't support this but msbuild does. The easiest way to get a compile is to edit a COPY of your .csproj file and change the output type to "module" and just run msbuild against it. Then use the "link" command to link your modules into your final exe/dll.