Add debugging and clean build directory for meson
Some checks failed
Build libfuse / Build and Test (push) Failing after 1m28s
Some checks failed
Build libfuse / Build and Test (push) Failing after 1m28s
- Add debug output to show current directory and contents - Remove existing build directory before creating new one - This should resolve the 'Build directory cannot be a parent of source directory' error - Add logging to help diagnose meson configuration issues The build directory might be persisting from previous runs, causing meson to detect the parent/source directory conflict.
This commit is contained in:
parent
8b23c2ee7b
commit
7fc8faa3bc
1 changed files with 4 additions and 0 deletions
|
|
@ -95,7 +95,11 @@ jobs:
|
|||
cd fuse-3.10.0
|
||||
|
||||
# Build libfuse
|
||||
echo "Current directory: $(pwd)"
|
||||
echo "Contents: $(ls -la)"
|
||||
rm -rf build
|
||||
mkdir build && cd build
|
||||
echo "Build directory: $(pwd)"
|
||||
meson setup --prefix=/usr --libdir=lib/x86_64-linux-gnu ..
|
||||
ninja
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue