From 20c9bec3bc1e267988f077d5858668b6f5ac2f02 Mon Sep 17 00:00:00 2001 From: Chris Speciale Date: Fri, 14 Mar 2025 05:29:18 -0400 Subject: [PATCH] Update Build.xml Hxcpp doesn't respect HXCPP_CPP11 for android. We can avoid this issue just by adding -std=c++11 here. This resolves a conflict with openal soft 1.20.1 for android builds. This works because the library assumes c++17 and invokes a function that isn't available in android sdk below 28. --- project/Build.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/project/Build.xml b/project/Build.xml index 15be32417..2c326e896 100755 --- a/project/Build.xml +++ b/project/Build.xml @@ -55,7 +55,8 @@ - + +