Skip to content

Commit

Permalink
Only add libcontainer dependency on Linux
Browse files Browse the repository at this point in the history
(cherry picked from commit 6871507)
  • Loading branch information
jerboaa authored and zakkak committed Jul 18, 2024
1 parent 3dd30e5 commit 2c6eeff
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build.java
Original file line number Diff line number Diff line change
Expand Up @@ -894,8 +894,11 @@ class Mx
{
projects = "com.oracle.svm.native.libchelper," +
"com.oracle.svm.native.reporterchelper," +
"com.oracle.svm.native.libcontainer," +
"com.oracle.svm.native.jvm.posix";
if (build.IS_LINUX)
{
projects += ",com.oracle.svm.native.libcontainer";
}
if (build.IS_MAC)
{
projects += ",com.oracle.svm.native.darwin";
Expand Down

0 comments on commit 2c6eeff

Please sign in to comment.