From e5cbfcca39522bd237e4611ffaaab8a8550640ef Mon Sep 17 00:00:00 2001 From: Jonathan Rajotte Date: Wed, 1 Nov 2017 11:40:32 -0400 Subject: [PATCH] Build jul agent and python agent for lttng-ust Signed-off-by: Jonathan Rajotte --- lttng_ivc/utils/project.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lttng_ivc/utils/project.py b/lttng_ivc/utils/project.py index 7adf5ad..fbd7f14 100644 --- a/lttng_ivc/utils/project.py +++ b/lttng_ivc/utils/project.py @@ -313,6 +313,11 @@ class Lttng_ust(Project): super(Lttng_ust, self).__init__(label=label, git_path=git_path, sha1=sha1, tmpdir=tmpdir) self.custom_configure_flags.extend(['--disable-man-pages']) + self.custom_configure_flags.extend(['--enable-python-agent']) + self.custom_configure_flags.extend(['--enable-java-agent-jul']) + + jul_path = os.path.join(self.installation_path, "share/java") + self.add_special_env_variable("CLASSPATH", "{}".format(jul_path)) class Lttng_tools(Project): -- 2.34.1