Malys
Malys

Reputation: 71

Native binary debug with GraalVM CE

I'm using Quarkus with GraalVM CE.

For developing, it's possible to enable debug mode with maven and it works fine. But after generation native binary (validation, production platforms), what are the best practices for debugging? Which tools could be used?

I have found this post but @johnaohara uses GraalVM EE. Reading GraalVM documentation, I understand that to use in production native binary with debug feature, we have to use GraalVM EE and pay for it?

That means in the real world Quarkus should build code using GraalVM EE and users should subscribe support to Oracle?

Please, share your experience about native binary in production and how to debug and manage it?

Thx,

Upvotes: 0

Views: 846

Answers (1)

BoriS
BoriS

Reputation: 982

Seems that debugging native images is an EE only feature. The documentation from https://www.graalvm.org/docs/reference-manual/aot-compilation/ says

-g enables the debugging info generation. Warning: The option is available only with GraalVM Enterprise Edition.

Upvotes: 0

Related Questions