diff options
author | fuzzard <fuzzard@kodi.tv> | 2022-06-19 16:03:01 +1000 |
---|---|---|
committer | fuzzard <fuzzard@kodi.tv> | 2022-06-25 06:39:48 +1000 |
commit | 7c9db067304fc649464005435e14c1364a8b9169 (patch) | |
tree | ef7f20f21979b2829012adf8aab3885e5c37d0ca /tools/depends/target/pythonmodule-pycryptodome/Makefile | |
parent | eddcab3d2c6324d8608734f096bc2da9d5766736 (diff) |
[tvos] remove bitcode flags/usage
We never got to a store submission that required bitcode, and apple has now removed the
requirement of bitcode for any future submissions with Xcode 14+
Diffstat (limited to 'tools/depends/target/pythonmodule-pycryptodome/Makefile')
-rw-r--r-- | tools/depends/target/pythonmodule-pycryptodome/Makefile | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/tools/depends/target/pythonmodule-pycryptodome/Makefile b/tools/depends/target/pythonmodule-pycryptodome/Makefile index a4e688b4b3..d07459a03b 100644 --- a/tools/depends/target/pythonmodule-pycryptodome/Makefile +++ b/tools/depends/target/pythonmodule-pycryptodome/Makefile @@ -19,15 +19,8 @@ ifeq (darwin, $(findstring darwin, $(HOST))) LDSHARED:=$(CC) -bundle -undefined dynamic_lookup $(LDFLAGS) endif -ifeq ($(TARGET_PLATFORM),appletvos) - # We cant export CFLAGS directly for tvos - # CFLAGS are added to linker command, having -bundle (LDSHARED) and -fembed_bitcode (CFLAGS) - # causes a failure: ld: -bundle and -bitcode_bundle (Xcode setting ENABLE_BITCODE=YES) cannot be used together - export CC:=$(CC) $(CFLAGS) -else - export CC CFLAGS -endif +export CC CFLAGS export LDSHARED LDFLAGS export PYTHONPATH=$(PYTHON_SITE_PKG) |