summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoryum <yum.food.vr@gmail.com>2025-10-28 18:28:04 -0700
committeryum <yum.food.vr@gmail.com>2025-10-28 18:28:04 -0700
commit23ff32d84e1f026c68a340f32d9f6b15e953d85a (patch)
tree27a622f299493fba14b2b3e75a34249545e0057a
parent09c7213ef6428e5a095d73e2f1d8d17265eb9690 (diff)
fix another compiler bug
-rw-r--r--README.md9
1 files changed, 3 insertions, 6 deletions
diff --git a/README.md b/README.md
index 9d6b6ae..465a53d 100644
--- a/README.md
+++ b/README.md
@@ -22,17 +22,14 @@ usage
build instructions
```bash
-git clone https://github.com/shader-slang/slang
+git clone https://github.com/yum-food/slang
cd slang
-git checkout 8f499fbe9baf68ef880da2ffe4812fbed1e5c1fa
-patch -p1 <../slang.patch
git submodule update --init --recursive -j 32
# wait, the previous command takes a while
mkdir build
cd build
-# run this part in powershell, from ./slang/build
-cmake.exe ..
-cmake.exe --build . -j 32 --config Release
+powershell.exe cmake.exe ..
+powershell.exe cmake.exe --build . -j 32 --config Release
# the previous command will take a long fucking time
# switch back to top level of repo
cd ../..