Browse Source

python: export CC + CCSHARED env vars to cross-compile Python C extensions properly

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
lilik-openwrt-22.03
Alexandru Ardelean 10 years ago
parent
commit
9415753544
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      lang/python/files/python-package.mk

+ 2
- 0
lang/python/files/python-package.mk View File

@ -72,6 +72,8 @@ endef
define Build/Compile/PyMod
$(call HostPython, \
cd $(PKG_BUILD_DIR)/$(strip $(1)); \
CC="$(TARGET_CC)" \
CCSHARED="$(TARGET_CC) $(FPIC)" \
CFLAGS="$(TARGET_CFLAGS)" \
CPPFLAGS="$(TARGET_CPPFLAGS)" \
LDFLAGS="$(TARGET_LDFLAGS)" \


Loading…
Cancel
Save