Skip to content

Commit

Permalink
Add System.c back. Nothing uses it yet.
Browse files Browse the repository at this point in the history
  • Loading branch information
wasabii committed Jun 1, 2024
1 parent 1064555 commit 4e83074
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/IKVM.Runtime/LibJVM.cs
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ void JVM_ArrayCopy(JNIEnv* env, nint ignored, nint src, int src_pos, nint dst, i

Array.Copy(s, src_pos, d, dst_pos, length);
}
catch (ArrayTypeMismatchException e)
catch (ArrayTypeMismatchException)
{
JVM.SetPendingException(new java.lang.ArrayStoreException());
}
Expand Down
5 changes: 2 additions & 3 deletions src/libiava/libiava.clangproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
<Header Include="$(OpenJdkDir)jdk\src\share\native\common\*.h" />
<Header Include="$(OpenJdkDir)jdk\src\$(OpenJdkTargetOsApiDir)\native\common\*.h" />
<PreprocessorDefinitions Include="RELEASE" Value="&quot;$(Version)&quot;" />
<PreprocessorDefinitions Include="VENDOR" Value="&quot;IKVM&quot;" />
<PreprocessorDefinitions Include="VENDOR_URL" Value="&quot;https://ikvm.org&quot;" />
<PreprocessorDefinitions Include="VENDOR" Value="&quot;$(ProductName)&quot;" />
<PreprocessorDefinitions Include="VENDOR_URL" Value="&quot;$(PackageProjectUrl)&quot;" />
<PreprocessorDefinitions Include="VENDOR_URL_BUG" Value="&quot;https://github.com/ikvmnet/ikvm/issues&quot;" />
<PreprocessorDefinitions Include="ARCHPROPNAME" Value="&quot;$(OpenJdkTargetCpuOsArch)&quot;" />
<LibJavaDirs Include="$(OpenJdkDir)jdk\src\$(OpenJdkTargetOsApiDir)\native\java\lang" />
Expand All @@ -41,7 +41,6 @@
<ItemGroup>
<!-- IKVM specific excludes -->
<LibJavaExclude Include="Shutdown.c" />
<LibJavaExclude Include="System.c" />
<LibJavaExclude Include="AccessController.c" />
<LibJavaExclude Include="Throwable.c" />
<LibJavaExclude Include="NativeAccessors.c" />
Expand Down

0 comments on commit 4e83074

Please sign in to comment.