File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -282,7 +282,10 @@ jobs:
282282 run : |
283283 brew update
284284285- brew remove unxip
285+ export ARCHITECHURE=$(uname -m)
286+ if [[ "$ARCHITECHURE" != "x86_64" ]]; then
287+ brew remove unxip
288+ fi
286289 # workaround for https://github.com/actions/setup-python/issues/577
287290 for pkg in $(brew list | grep '^python@'); do
288291 brew unlink "$pkg"
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ all : $(dicts)
1818
1919# cppflags=$(shell llvm-config --cxxflags) -O3 -fPIC -I$(shell python -c 'import sysconfig as sc; print(sc.get_config_var("INCLUDEPY"))') -Wno-register
2020# FIXME: stltypes.cxx does not compile with clang!
21- cppflags = -std=c++17 -O0 -g -fPIC -I$(shell python -c 'import sysconfig as sc; print(sc.get_config_var("INCLUDEPY") )') -Wno-register
21+ cppflags = -std=c++17 -O3 -fPIC -I$(shell python -c 'import sysconfig as sc; print(sc.get_config_var("INCLUDEPY") )') -Wno-register
2222
2323PLATFORM := $(shell uname -s)
2424ifeq ($(PLATFORM ) ,Darwin)
You can’t perform that action at this time.
0 commit comments