Browse Source

python: add LD and LDSHARED env vars to Build/Compile/PyMod

Tells the host Python to use the target's linker.

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

+ 3
- 1
lang/python/files/python-package.mk View File

@ -74,9 +74,11 @@ define Build/Compile/PyMod
cd $(PKG_BUILD_DIR)/$(strip $(1)); \
CC="$(TARGET_CC)" \
CCSHARED="$(TARGET_CC) $(FPIC)" \
LD="$(TARGET_CC)" \
LDSHARED="$(TARGET_CC) -shared" \
CFLAGS="$(TARGET_CFLAGS)" \
CPPFLAGS="$(TARGET_CPPFLAGS) -I$(PYTHON_INC_DIR)" \
LDFLAGS="$(TARGET_LDFLAGS)" \
LDFLAGS="$(TARGET_LDFLAGS) -lpython$(PYTHON_VERSION)" \
$(3) \
, \
./setup.py $(2) \


Loading…
Cancel
Save