mirror of
https://github.com/python/cpython.git
synced 2025-12-31 04:23:37 +00:00
* WIP: ENH: Pixi package definitions for downstream development [skip ci] * linux-64 support * tidy gitignore * respond to review - switch cases on `PYTHON_VARIANT` - remove `minor_version` by using `python3` - remove runtime-only asan options * README updates * use `.md` to preview rendering * Apply suggestions from code review Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> * Apply suggestion from @FFY00 Co-authored-by: Filipe Laíns <filipe.lains@gmail.com> * Apply suggestion from @FFY00 Co-authored-by: Filipe Laíns <filipe.lains@gmail.com> * Apply suggestion from @FFY00 Co-authored-by: Filipe Laíns <filipe.lains@gmail.com> * Apply suggestion from @lucascolley --------- Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Co-authored-by: Filipe Laíns <filipe.lains@gmail.com>
37 lines
1,020 B
Bash
37 lines
1,020 B
Bash
#!/bin/bash
|
|
|
|
if [[ "${PYTHON_VARIANT}" == "asan" ]]; then
|
|
echo "BUILD TYPE: ASAN"
|
|
BUILD_DIR="../build_asan"
|
|
CONFIGURE_EXTRA="--with-address-sanitizer"
|
|
export PYTHON_ASAN="1"
|
|
export ASAN_OPTIONS="strict_init_order=true"
|
|
else
|
|
echo "BUILD TYPE: DEFAULT"
|
|
BUILD_DIR="../build"
|
|
CONFIGURE_EXTRA=""
|
|
fi
|
|
|
|
mkdir -p "${BUILD_DIR}"
|
|
cd "${BUILD_DIR}"
|
|
|
|
if [[ -f configure-done ]]; then
|
|
echo "Skipping configure step, already done."
|
|
else
|
|
"${SRC_DIR}/configure" \
|
|
--prefix="${PREFIX}" \
|
|
--oldincludedir="${BUILD_PREFIX}/${HOST}/sysroot/usr/include" \
|
|
--enable-shared \
|
|
--srcdir="${SRC_DIR}" \
|
|
${CONFIGURE_EXTRA}
|
|
fi
|
|
|
|
touch configure-done
|
|
|
|
make -j"${CPU_COUNT}" install
|
|
ln -sf "${PREFIX}/bin/python3" "${PREFIX}/bin/python"
|
|
|
|
# https://github.com/prefix-dev/rattler-build/issues/2012
|
|
if [[ ${OSTYPE} == "darwin"* ]]; then
|
|
cp "${BUILD_PREFIX}/lib/clang/21/lib/darwin/libclang_rt.asan_osx_dynamic.dylib" "${PREFIX}/lib/libclang_rt.asan_osx_dynamic.dylib"
|
|
fi
|