Improve path consistency in deps documentation

Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-12-28 19:10:01 +00:00
parent 2296620845
commit f60c8cd406
2 changed files with 5 additions and 4 deletions

4
deps/README.md vendored
View File

@@ -81,10 +81,10 @@ cd qt-everywhere-src-6.5.3
# Configure for MetalOS (minimal, static linking)
./configure -static -no-dbus -no-ssl -no-cups -no-fontconfig \
-prefix ../MetalOS/deps/qt6
-prefix $PWD/../deps/qt6
```
**Note**: Adjust the `-prefix` path to match your MetalOS repository location. Using a relative path from the extracted QT source directory.
**Note**: Adjust the path as needed based on your directory structure. The example above assumes you extracted QT source alongside the MetalOS repository.
**License**: LGPL v3 / GPL v2 / Commercial (see QT documentation)

View File

@@ -20,8 +20,9 @@ cd /tmp/mesa
# Checkout stable version
git checkout mesa-24.0.0
# Copy RADV sources
cp -r src/amd/vulkan/* /path/to/MetalOS/deps/mesa-radv/
# Copy RADV driver sources to deps
# Assuming you're in the mesa source directory and MetalOS repo is in parent
cp -r src/amd/vulkan/* ../MetalOS/deps/mesa-radv/
```
## Integration with MetalOS