forked from mono/CppSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Synced our CppSharp fork with main (#8)
* Incorrect build instructions on Windows (mono#1701) * Fix incorrect build instructions for Windows * Add link to Visual Studio installer * Refine building instructions for VS2019+ (cherry picked from commit c4a24b0) * Misc changes (mono#1710) * Minor code refactoring for re-use. * Add Class.FindVariable helper method. * Upgrade to .NET 6. (cherry picked from commit db7949b) * Add C++ WebAssembly ABI (mono#1711) * Minor code refactorings. * Fix debug assert issue with vtable methods. * Add support for WebAssembly C++ ABI to parser and AST converter. (cherry picked from commit 9b06e7b) * Add initial Emscripten generator. (mono#1712) (cherry picked from commit 117567d) * Code cleanups and improvements (mono#1713) * Code cleanups. * Run GetterSetterToPropertyPass for more generators. * Fixed compile warning when compiling parser bindings. * Cleanup driver code. * Remove dead 32-bit code. * Reduce verbosity when Options.Quiet is set. * Remove test compile-time warnings. * Move .NET tests to tests/dotnet. * Remove unused AST viewer code and premake-qt submodule. * Move tests2/ contents to tests/. (cherry picked from commit 4417dd9) * Publish package to nuget.org when a version tag is created (cherry picked from commit 5715df5) * Allow passing a `-target-framework` option to `build.sh` (mono#1718) Closes mono#1717. (cherry picked from commit 8cf6e3f) * Remove unused LLVM build flags. (cherry picked from commit 84b7276) * Update LLVM workflow to latest Action images. (cherry picked from commit 3d32fc7) * Update LLVM Windows workflow to latest Action images. (cherry picked from commit f9f9e9c) * Update action steps to latest to fix Node.js deprecation warnings. (cherry picked from commit 7d6decd) * Update LLVM build script for Visual Studio 2022. (cherry picked from commit b8a16a4) * Workaround Directory.Build.props getting picked up when building LLVM. This is to workaround MSBuild CMake step from LLVM build in Windows picking this up. (cherry picked from commit 25e2c7c) * Added variation of mono#1736 * Workaround parsing GNU system headers with GCC 11.0 version. (mono#1737) Closes mono#1703. Upstream bugs: llvm/llvm-project#51607 llvm/llvm-project#53152 (cherry picked from commit 0272532) * CppSharp.AST.Declaration - fix return QualifiedOriginalName, QualifiedLogicalOriginalName (mono#1740) Fixed properties getters of QualifiedOriginalName, QualifiedLogicalOriginalName and methods GetQualifiedName(), GatherNamespaces. (cherry picked from commit 9923d79) * CSharpExpressionPrinter: Wrap expression in parenthesis (mono#1741) Wrap default parameter expressions in parentheses to ensure whole expressions are casted instead of only the first operand. (cherry picked from commit 169f868) * Update README.md Remove Gitter since the link is 404 and we have not been using it anyway. (cherry picked from commit 160efb4) * CSharpExpressionPrinter: Recurse into operands (mono#1745) * CSharpExpressionPrinter: Recurse into operands Recursively call `VisitExpression` on the LHS and RHS of a binary operator expression. This fixes the generation for complex default parameters involving things other than two enumeration members. * CSharpSources: Use `const` when possible Generate `const` instead of `static` members when possible. This allows generated members to be used when compile-time constants are required, such as default parameters. (cherry picked from commit 1ce9cb7) * CSharp: More default parameter fixes (mono#1747) - Expression generation for `ConstructorReference` now also recursively calls `VisitExpression` for the argument if only one argument is detected. This allows correct overload generation for functions taking a variable as the default parameter value. - Default parameters of pointer-to-enumeration types are now correctly generated similar to primitive types. (cherry picked from commit add3aba) * Add type parameter to non-type template parameter decls. (mono#1749) (cherry picked from commit bb31bd6) * Update parser example to latest API. (cherry picked from commit 8c1fa18) * Fixed debugging printing when type printing delegate is not initialized. (cherry picked from commit 9f3ce76) * Array marshalling (mono#1748) * Generator: Customization for const char[] Allow the user to choose whether `const char[]` should be marshalled as `string` or a normal `char` array in C#. A new option `MarshalConstCharArrayAsString` is added, and is `true` by default. This helps in situations where the original C++ API distinguishes between C-strings and char arrays using the two different notations. * CSharpMarshal: Fix unknown length array marshal For unknown length arrays, also run a conversion loop if the primitive type encountered needs conversion (e.g. `char` to `sbyte`). * CSharpTypePrinter: Fix for boolean arrays (cherry picked from commit 357efec) * Add qualified template name to GetCXXRecordDeclFromBaseType. (mono#1751) (cherry picked from commit 626a362) * SymbolResolver: Use filename when path cannot be found (mono#1752) Uses bare filename to pass to `dlopen` when the full path cannot be detected. This helps on systems where library paths are not the same as $PATH. (cherry picked from commit 3978fb3) * CSharpSources: Dereference pointer variables (mono#1753) Dereference pointers when generating getters for pointer variables. Otherwise, the managed instance would point to the pointer itself rather than the object at the native instance's address. (cherry picked from commit ce3d04a) * Use TypePrinter.IntPtrType in CSharpSources.cs code from previous commit. (cherry picked from commit 3c31179) --------- Co-authored-by: aybe <[email protected]> Co-authored-by: João Matos <[email protected]> Co-authored-by: josetr <[email protected]> Co-authored-by: stachu99 <[email protected]> Co-authored-by: Trung Nguyen <[email protected]>
- Loading branch information
1 parent
2bf3d05
commit 0c3e1b4
Showing
215 changed files
with
2,284 additions
and
3,652 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +0,0 @@ | ||
[submodule "build/modules/premake-qt"] | ||
path = build/modules/premake-qt | ||
url = https://github.com/dcourtois/premake-qt.git | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<Project> | ||
<!-- This empty file is to workaround MSBuild picking up the root Directy.Build.props when building LLVM. --> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule premake-qt
deleted from
0ddc49
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,8 @@ public enum CppAbi | |
Microsoft, | ||
ARM, | ||
iOS, | ||
iOS64 | ||
iOS64, | ||
WebAssembly | ||
} | ||
|
||
/// <summary> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.