@@ -99,27 +99,35 @@ jobs:
99
99
- name : SDK ${{ steps.sdk.outputs.version }} installed
100
100
run : which pdc && pdc --version
101
101
102
- # - name: "Debug: Pre Install Bindgen"
103
- # run: |
104
- # echo "from hardcode:"
105
- # ls "${{ runner.temp }}"
106
- # ls "${{ runner.temp }}/llvm"
107
- # ls "${{ runner.temp }}/llvm/*"
108
- # # echo "from env:"
109
- # # ls "${{ env.LLVM_PATH }}"
110
- # # ls "${{ env.LLVM_PATH }}/*"
102
+ - name : " Debug: Pre Install Bindgen"
103
+ continue-on-error : true
104
+ run : |
105
+ ls "${{ runner.temp }}/llvm/bin"
106
+ ${{ env.LLVM_PATH }}\bin\llvm-config --libdir
107
+
108
+ - name : " Debug: llvm-config"
109
+ continue-on-error : true
110
+ shell : powershell
111
+ run : ${{ env.LLVM_PATH }}\bin\llvm-config --libdir
112
+
113
+ - name : " Debug: llvm-config"
114
+ continue-on-error : true
115
+ shell : cmd
116
+ run : ${{ env.LLVM_PATH }}\bin\llvm-config --libdir
111
117
112
118
- name : Install Bindgen
113
119
# id: pdbindgen
114
120
# continue-on-error: true
115
121
if : runner.os == 'Windows'
116
122
env :
117
- LLVM_CONFIG_PATH : ${{ env.LLVM_PATH }}\bin\llvm-config
123
+ # LLVM_CONFIG_PATH: ${{ env.LLVM_PATH }}\bin\llvm-config
118
124
# LLVM_CONFIG_PATH: ${{ runner.temp }}\llvm\bin\llvm-config
125
+ LIBCLANG_PATH : ${{ env.LLVM_PATH }}\bin
119
126
run : >-
120
127
cargo install playdate-bindgen --path ./support/bindgen
121
- --features=cli,static --no-default-features
128
+ --features=cli
122
129
--debug
130
+ # --features=cli,static --no-default-features
123
131
124
132
- name : Test Sys (host)
125
133
run : |
0 commit comments