Skip to content

Commit

Permalink
Build: Try to re-include more target platforms.
Browse files Browse the repository at this point in the history
  • Loading branch information
scoder committed Mar 30, 2024
1 parent a8ab41d commit af71da1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ skip = ["pp*-manylinux_i686", "*-musllinux_i686"]
# test-command = "python {package}/test.py -p -v"

[tool.cibuildwheel.linux]
archs = ["x86_64", "aarch64", "i686"] # , "ppc64le", "s390x"]
archs = ["x86_64", "aarch64", "i686", "ppc64le", "s390x"]
repair-wheel-command = "auditwheel repair --strip -w {dest_dir} {wheel}"

[tool.cibuildwheel.linux.environment]
CFLAGS = "-O3 -g1 -pipe -fPIC -flto -mtune=generic"
CFLAGS = "-O3 -g1 -pipe -fPIC -flto"
AR = "gcc-ar"
NM = "gcc-nm"
RANLIB = "gcc-ranlib"
Expand All @@ -24,12 +24,12 @@ LIBXSLT_VERSION = "1.1.39"
[[tool.cibuildwheel.overrides]]
select = "*linux_i686"
inherit.environment = "append"
environment.CFLAGS="-O3 -g1 -pipe -fPIC -flto -march=sandybridge"
environment.CFLAGS="-O3 -g1 -pipe -fPIC -flto -march=sandybridge -mtune=generic"

[[tool.cibuildwheel.overrides]]
select = "*linux_x86_64"
inherit.environment = "append"
environment.CFLAGS="-O3 -g1 -pipe -fPIC -flto -march=sandybridge"
environment.CFLAGS="-O3 -g1 -pipe -fPIC -flto -march=sandybridge -mtune=generic"

[[tool.cibuildwheel.overrides]]
select = "*aarch64"
Expand Down

0 comments on commit af71da1

Please sign in to comment.