From 8d0dd9d1e08bc0be8ee331fd2208fe6611d8ff64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Pe=C5=82ka?= Date: Thu, 21 Dec 2023 19:06:05 +0100 Subject: [PATCH] The version of PhysX cannot be built, since it fails to configure. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit With main branch of this repo, I've obtained error similar to : https://github.com/NVIDIA-Omniverse/PhysX/issues/231 I resolved it by manually updtating pacman after cloning PhysX, what was proposed here https://github.com/NVIDIA-Omniverse/PhysX/discussions/230. Signed-off-by: Michał Pełka --- package-system/PhysX5/build_package_image.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package-system/PhysX5/build_package_image.py b/package-system/PhysX5/build_package_image.py index 75208762..ea4a7ec8 100644 --- a/package-system/PhysX5/build_package_image.py +++ b/package-system/PhysX5/build_package_image.py @@ -90,6 +90,8 @@ def clone(self, lockToCommit: str): self.check_call( ['git', 'checkout', lockToCommit,], ) + # update pacman to according https://github.com/NVIDIA-Omniverse/PhysX/discussions/230 + self.check_call(['physx/buildtools/packman/packman', 'update', '-y']) def preparePreset(self, buildAsStaticLibs, config): preset_index = 0