This file contains hidden or 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
| diff --git a/src/Mono.Posix/Mono.Posix.csproj b/src/Mono.Posix/Mono.Posix.csproj | |
| index 8120cc2..5d3f73e 100644 | |
| --- a/src/Mono.Posix/Mono.Posix.csproj | |
| +++ b/src/Mono.Posix/Mono.Posix.csproj | |
| @@ -245,6 +245,11 @@ | |
| <Name>Mono.Android</Name> | |
| <Private>False</Private> | |
| </ProjectReference> | |
| + <ProjectReference Include="..\Xamarin.Android.Build.Tasks\Xamarin.Android.Build.Tasks.csproj"> | |
| + <Project>{3F1F2F50-AF1A-4A5A-BEDB-193372F068D7}</Project> |
This file contains hidden or 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
| diff --git a/external/Java.Interop b/external/Java.Interop | |
| --- a/external/Java.Interop | |
| +++ b/external/Java.Interop | |
| @@ -1 +1 @@ | |
| -Subproject commit b6431ac85042960ba28dfb19f0be19573745d968 | |
| +Subproject commit b6431ac85042960ba28dfb19f0be19573745d968-dirty | |
| diff --git a/src/Mono.Android/Mono.Android.targets b/src/Mono.Android/Mono.Android.targets | |
| index 09878c4..0f357b0 100644 | |
| --- a/src/Mono.Android/Mono.Android.targets | |
| +++ b/src/Mono.Android/Mono.Android.targets |
This file contains hidden or 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
| diff --git a/Makefile b/Makefile | |
| index 1c51739..aa34c01 100644 | |
| --- a/Makefile | |
| +++ b/Makefile | |
| @@ -3,6 +3,12 @@ CONFIGURATION = Debug | |
| MSBUILD = xbuild /p:Configuration=$(CONFIGURATION) $(MSBUILD_ARGS) | |
| RUNTIME := $(shell if [ -f `which mono64` ] ; then echo mono64 ; else echo mono; fi) --debug=casts | |
| +LIB_MANDROID_PROJECTS = \ | |
| + external/Java.Interop/tools/class-parse/class-parse.csproj \ |
This file contains hidden or 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
| commit 25b5d95a918859a5d40365af5794848983b3371d | |
| Author: Jonathan Pryor <jonpryor@vt.edu> | |
| Date: Thu May 12 11:34:06 2016 -0400 | |
| [android-toolchains, mono-runtimes] Build armeabi, arm64-v8a. | |
| diff --git a/Configuration.Override.props.in b/Configuration.Override.props.in | |
| index 099d5de..fe8d457 100644 | |
| --- a/Configuration.Override.props.in | |
| +++ b/Configuration.Override.props.in |
This file contains hidden or 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
| diff --git a/src/Xamarin.Android.Build.Tasks/Xamarin.Android.Build.Tasks.csproj b/src/Xamarin.Android.Build.Tasks/Xamarin.Android.Build.Tasks.csproj | |
| index 8e50ac0..8f16b76 100644 | |
| --- a/src/Xamarin.Android.Build.Tasks/Xamarin.Android.Build.Tasks.csproj | |
| +++ b/src/Xamarin.Android.Build.Tasks/Xamarin.Android.Build.Tasks.csproj | |
| @@ -65,6 +65,7 @@ | |
| </Reference> | |
| </ItemGroup> | |
| <ItemGroup> | |
| + <Compile Include="$(IntermediateOutputPath)Profile.g.cs" /> | |
| <Compile Include="Linker\LinkModes.cs" /> |
This file contains hidden or 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
| using System; | |
| using System.Diagnostics; | |
| using System.Reflection; | |
| class App { | |
| const int C = 1000000; | |
| static void TimeReflection (PropertyInfo p, string value) | |
| { | |
| var sw = Stopwatch.StartNew (); |
This file contains hidden or 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
| diff --git a/mcs/class/monodoc/Makefile b/mcs/class/monodoc/Makefile | |
| index 3ebba80..8e550e1 100644 | |
| --- a/mcs/class/monodoc/Makefile | |
| +++ b/mcs/class/monodoc/Makefile | |
| @@ -141,7 +141,7 @@ Monodoc.Ecma/EcmaUrlParser.cs: Monodoc.Ecma/EcmaUrlParser.jay $(topdir)/jay/skel | |
| $(topdir)/$(thisdir)/jay.sh $(topdir) $< $@ $(JAY_FLAGS) | |
| parser.exe: Monodoc.Ecma/EcmaUrlParser.cs Monodoc.Ecma/EcmaUrlTokenizer.cs Monodoc.Ecma/EcmaUrlParserDriver.cs Monodoc.Ecma/EcmaDesc.cs | |
| - mcs /out:$@ /debug $^ | |
| + mcs /out:$@ /unsafe /debug $^ |
This file contains hidden or 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
| $ mono mono-api-info.exe --help | |
| --abi Generate ABI, not API; includes only classes with | |
| instance fields which are not [NonSerialized]. | |
| -L, --lib=DIRECTORY Check for assembly references in DIRECTORY. | |
| -r=ASSEMBLY Read and register the file ASSEMBLY, and add the | |
| directory containing ASSEMBLY to the search path. | |
| -h, -?, --help Show this message and exit. |
This file contains hidden or 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
| void foo () {} | |
| void bar () | |
| { | |
| return foo (); | |
| } | |
| int main () | |
| { | |
| bar (); |
This file contains hidden or 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
| struct B { | |
| int a; | |
| }; | |
| struct D { | |
| struct B base; | |
| int d; | |
| }; | |
| int |