File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -160,11 +160,8 @@ jobs:
160
160
- name : Prepare homebrew environment variables
161
161
run : |
162
162
brew install pkg-config openssl@1.1 xz gdbm tcl-tk
163
- echo "CFLAGS=-I$(brew --prefix gdbm)/include -I$(brew --prefix xz)/include" >> $GITHUB_ENV
164
- echo "LDFLAGS=-L$(brew --prefix gdbm)/lib -I$(brew --prefix xz)/lib" >> $GITHUB_ENV
165
- echo "PKG_CONFIG_PATH=$(brew --prefix tcl-tk)/lib/pkgconfig" >> $GITHUB_ENV
166
163
- name : Configure CPython
167
- run : ./configure --with-pydebug --with-openssl=$(brew --prefix openssl@1.1)
164
+ run : CFLAGS="-I$(brew --prefix gdbm)/include -I$(brew --prefix xz)/include" LDFLAGS="-L$(brew --prefix gdbm)/lib -I$(brew --prefix xz)/lib" PKG_CONFIG_PATH="$(brew --prefix tcl-tk)/lib/pkgconfig" ./configure --with-pydebug --with-openssl=$(brew --prefix openssl@1.1)
168
165
- name : Build CPython
169
166
run : make -j4
170
167
- name : Display build info
You can’t perform that action at this time.
0 commit comments