Python Forum

Full Version: syslog module not built during cross compile
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi All,

I am tring to porting python2.7.15 to my arm platform, and I would like to use syslog module in my code.

below is my configure options

Output:
--with-ssl=$(BUILD_HOST_DIR)/usr/ \ --with-ssl-includes=$(BUILD_HOST_DIR)/usr/include/ \ --with-ssl-libs=$(BUILD_HOST_DIR)/usr/lib \ HOSTPGEN=pgen2 \ build_alias=x86_64-pc-linux-gnu \ --disable-ipv6 \ ac_cv_file__dev_ptc=no \ ac_cv_file__dev_ptmx=no \
below is make options

Output:
CROSS_COMPILE_TARGET=yes \ CFLAGS="$(TARGET_CFLAGS) -fno-inline" \ LDFLAGS="$(TARGET_LDFLAGS)" \ LD="$(TARGET_CC)" \ HOSTPGEN=pgen2
with these settings, I can compile python successfully, but syslog.so library doesn't generate.

any idea that i can have a check?

thanks in advanced.