Skip to content

Commit

Permalink
macOS debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
ParkMyCar committed Aug 25, 2024
1 parent 3c25dde commit 4274fbe
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/macos-clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,17 @@ jobs:
echo $GITHUB_ENV
- name: Debugging
run: |
mkdir package package/bin package/lib package/include
cat clang/bin.txt | while read -r val; do val=${val#mac:}; [[ $val != linux* ]] && [[ -n $val ]] && eval echo llvm-project/build/bin/$val ; done
cat clang/include.txt | while read -r val; do val=${val#mac:}; [[ $val != linux* ]] && [[ -n $val ]] && eval echo llvm-project/build/include/$val ; done
cat clang/lib.txt | while read -r val; do val=${val#mac:}; [[ $val != linux* ]] && [[ -n $val ]] && eval echo llvm-project/build/lib/$val ; done
which tar
which zstd
- name: cmake configure
# Note: Unlike Linux we don't statically link libstdc++
run: |
Expand Down Expand Up @@ -98,7 +109,6 @@ jobs:
- name: package toolchain
run: |
mkdir package package/bin package/lib package/include
cat clang/bin.txt
cat clang/bin.txt | while read -r val; do val=${val#mac:}; [[ $val != linux* ]] && [[ -n $val ]] && eval cp -rP llvm-project/build/bin/$val package/bin/; done
cat clang/include.txt | while read -r val; do val=${val#mac:}; [[ $val != linux* ]] && [[ -n $val ]] && eval cp -rP llvm-project/build/include/$val package/include/; done
Expand Down

0 comments on commit 4274fbe

Please sign in to comment.