From d1428e1c213b1d1092fd9fdcdb0f9cf75b5d1297 Mon Sep 17 00:00:00 2001 From: Steven9Smith Date: Tue, 23 Sep 2025 19:13:40 -0400 Subject: [PATCH 1/2] Update Readme.md - Added instruction for fixing build issue in windows. Realated to issue https://github.com/isaac-sim/IsaacSim/issues/214 --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 9a8ea185..0a082a2c 100644 --- a/README.md +++ b/README.md @@ -133,6 +133,14 @@ g++ --version > **⚠️ Windows Path Length Limitation** > Windows has a path length limitation of 260 characters. If you encounter errors related missing files or other build errors, try moving the repository to a shorter path. +> **⚠️ Packman Temp Directory Setting** +> If you receive the error "The system cannot find the file specified." multiple times during the build you may need to set the **PM_PACKAGES_ROOT** in windows. +> To remedy this please execute the follow commands. +> +> ```powershell +> setx PM_PACKAGES_ROOT +> ``` + ```powershell build.bat ``` From 59df80daa679e2d6addc3305fa94ecec4a298fc7 Mon Sep 17 00:00:00 2001 From: Steven9Smith Date: Tue, 23 Sep 2025 19:15:21 -0400 Subject: [PATCH 2/2] Update README.md - fixed typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0a082a2c..7c27ae25 100644 --- a/README.md +++ b/README.md @@ -135,7 +135,7 @@ g++ --version > **⚠️ Packman Temp Directory Setting** > If you receive the error "The system cannot find the file specified." multiple times during the build you may need to set the **PM_PACKAGES_ROOT** in windows. -> To remedy this please execute the follow commands. +> To remedy this please execute the follow command. > > ```powershell > setx PM_PACKAGES_ROOT