Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
lazka committed Aug 27, 2024
1 parent 942e478 commit cbba3ea
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions mingw_smoketests.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,9 @@ def test_c_ext_build(self):
"wheel",
],
)
# setuptools only looks for gcc and not clang
env = os.environ.copy()
env["CC"] = "cc"
subprocess.check_call(
[
sys.executable,
Expand All @@ -361,6 +364,7 @@ def test_c_ext_build(self):
"install",
tmppro,
],
env=env,
)
subprocess.check_call(
[sys.executable, "-c", "import cwrapper"],
Expand Down

0 comments on commit cbba3ea

Please sign in to comment.