Skip to content

Commit

Permalink
g
Browse files Browse the repository at this point in the history
  • Loading branch information
oxidase committed Jul 2, 2024
1 parent a09ef33 commit b1dfb01
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
strategy:
matrix:
include: # TODO: windows-latest
- os: ubuntu-latest
cache: ~/.cache/bazel
python: '3.8'
# - os: ubuntu-latest
# cache: ~/.cache/bazel
# python: '3.8'
- os: macos-latest
cache: /private/var/tmp/_bazel_runner
python: '3.12'
Expand Down
6 changes: 5 additions & 1 deletion python/poetry_deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,11 @@ def install(args):
CFLAGS=" ".join([flag for flag in cflags if flag]),
CXXFLAGS=" ".join([flag for flag in cxxflags if flag]),
LDFLAGS=" ".join([flag for flag in ldflags if flag]),
CMAKE_ARGS=cc_cpu_to_cmake_args.get(cc.get("cpu"), "") + " -DCMAKE_VERBOSE_MAKEFILE=ON",
ASMFLAGS="-arch arm64",
ASM_FLAGS="-arch arm64",
CMAKE_ASM_FLAGS="-arch arm64",
CMAKE_ARGS=cc_cpu_to_cmake_args.get(cc.get("cpu"), "")
+ " -DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_ASM_FLAGS='-arch arm64'",
)

os.environ.update(flags)
Expand Down

0 comments on commit b1dfb01

Please sign in to comment.