From 20bf79273b1ded41c867d587abd032fbede87565 Mon Sep 17 00:00:00 2001 From: Aura Munoz Date: Tue, 19 Dec 2023 11:03:53 +0100 Subject: [PATCH] [build_usd] Update OpenImageIO to v2.5.6.0 - The current version v2.3.21.0 includes a bug that reports false positives when using the `-p` flag and having a very high value for the absolute tolerance. This is fixed in v2.5.6.0 in https://github.com/AcademySoftwareFoundation/OpenImageIO/pull/4061. --- build_scripts/build_usd.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build_scripts/build_usd.py b/build_scripts/build_usd.py index 5c2db7ca7b..f17612a772 100644 --- a/build_scripts/build_usd.py +++ b/build_scripts/build_usd.py @@ -842,6 +842,7 @@ def InstallBoost_Helper(context, force, buildArgs): b2_settings.append("--with-date_time") if context.buildOIIO or context.enableOpenVDB: + b2_settings.append("--with-chrono") b2_settings.append("--with-system") b2_settings.append("--with-thread") @@ -1244,7 +1245,7 @@ def InstallOpenVDB(context, force, buildArgs): ############################################################ # OpenImageIO -OIIO_URL = "https://github.com/OpenImageIO/oiio/archive/refs/tags/v2.3.21.0.zip" +OIIO_URL = "https://github.com/OpenImageIO/oiio/archive/refs/tags/v2.5.6.0.zip" def InstallOpenImageIO(context, force, buildArgs): with CurrentWorkingDirectory(DownloadURL(OIIO_URL, context, force)):