Skip to content

Commit 68644d9

Browse files
authored
Merge pull request #340 from wudidapaopao/fix-crash-on-mac-x86
2 parents 9a332eb + c043ee3 commit 68644d9

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/build_macos_x86_wheels.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ on:
1313
- main
1414
paths-ignore:
1515
- '**/*.md'
16+
pull_request:
17+
branches:
18+
- main
19+
paths-ignore:
20+
- '**/*.md'
1621

1722
jobs:
1823
build_wheels_macos_13:

chdb/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ if [ "$(uname)" == "Darwin" ]; then
3131
CPU_FEATURES="-DENABLE_AVX=0 -DENABLE_AVX2=0"
3232
LLVM="-DENABLE_EMBEDDED_COMPILER=0 -DENABLE_DWARF_PARSER=0"
3333
else
34-
LLVM="-DENABLE_EMBEDDED_COMPILER=1 -DENABLE_DWARF_PARSER=1"
34+
LLVM="-DENABLE_EMBEDDED_COMPILER=0 -DENABLE_DWARF_PARSER=0"
3535
# disable AVX on Darwin for macos11
3636
if [ "$(sw_vers -productVersion | cut -d. -f1)" -le 11 ]; then
3737
CPU_FEATURES="-DENABLE_AVX=0 -DENABLE_AVX2=0"

0 commit comments

Comments
 (0)