packages/lang/python/python3
Jeffery To 9f81ab895e python3: Fix host build tool names recorded in target files
Python will record the values of CC, CXX, AR, and READELF (and other
configure options) used during compilation. pip will use these programs
when asked to compile extension modules on the target device.

* If ccache is used during build, CC and CXX will be ccache_cc and
  ccache_cxx, respectively, which are not available on-device (#11912).

* If an external toolchain is used during build, the values of these
  variables will contain the external toolchain prefix, which may not be
  available on target.

* If the normal toolchain is used during build, AR and READELF will
  contain the toolchain prefix, but the names of ar and readelf
  on-device do not contain the prefix; they are named "ar" and
  "readelf".

This changes the values of these variables in Python's files to match
the names available on-device, and without any toolchain prefix.

Signed-off-by: Jeffery To <jeffery.to@gmail.com>
2020-04-27 14:10:53 +08:00
..
files python3: Fix host build tool names recorded in target files 2020-04-27 14:10:53 +08:00
patches python3: Fix compilation without deprecated APIs 2020-01-14 14:43:58 -08:00
patches-pip python3-pip: Fix error when installing packages that require compilation 2020-04-24 21:09:37 +08:00
patches-setuptools python-setuptools: Add reproducibility patches from Debian 2019-05-24 13:18:09 +08:00
Config-python3-light.in python,python3: define config option for bluetooth support 2017-12-10 19:49:23 +02:00
Makefile python3: Fix host build tool names recorded in target files 2020-04-27 14:10:53 +08:00