From 34f2c32c861417fb6e7d749e6ad9b401b3147c6c Mon Sep 17 00:00:00 2001 From: Dmytro Vyazelenko <696855+vyazelenko@users.noreply.github.com> Date: Wed, 18 Dec 2024 10:12:08 +0100 Subject: [PATCH] [Doc] Add `--add-opens java.base/jdk.internal.misc=ALL-UNNAMED` to the example execution. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b286d7297..3b2d354d4 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ Jars for the executable, source, and javadoc for the various modules can be foun An example to execute a Jar from command line using the 'all' jar which includes the Agrona dependency: - java -Dsbe.generate.ir=true -Dsbe.target.language=Cpp -Dsbe.target.namespace=sbe -Dsbe.output.dir=include/gen -Dsbe.errorLog=yes -jar sbe-all/build/libs/sbe-all-${SBE_TOOL_VERSION}.jar my-sbe-messages.xml + java --add-opens java.base/jdk.internal.misc=ALL-UNNAMED -Dsbe.generate.ir=true -Dsbe.target.language=Cpp -Dsbe.target.namespace=sbe -Dsbe.output.dir=include/gen -Dsbe.errorLog=yes -jar sbe-all/build/libs/sbe-all-${SBE_TOOL_VERSION}.jar my-sbe-messages.xml C++ Build using CMake ---------------------