Skip to content

Commit b226f35

Browse files
committed
tweaks
1 parent 81c8972 commit b226f35

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Tools/pixi-packages/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ in a [Pixi workspace](https://pixi.sh/latest/first_workspace/), like:
1111
[dependencies]
1212
python.git = "https://github.com/python/cpython"
1313
python.subdirectory = "Tools/pixi-packages"
14-
python.flags = "asan"
14+
python.flags = ["asan"]
1515
```
1616

1717
This is particularly useful when developers need to build CPython from source

Tools/pixi-packages/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ if [[ "${PYTHON_VARIANT}" == "freethreading" ]]; then
77
elif [[ "${PYTHON_VARIANT}" == "asan" ]]; then
88
CONFIGURE_EXTRA="--with-address-sanitizer"
99
export ASAN_OPTIONS="strict_init_order=true"
10-
elif [[ "${PYTHON_VARIANT}" == "tsan-freethreading" ]]; then
10+
elif [[ "${PYTHON_VARIANT}" == "tsan_freethreading" ]]; then
1111
CONFIGURE_EXTRA="--disable-gil --with-thread-sanitizer"
1212
export TSAN_OPTIONS="suppressions=${SRC_DIR}/Tools/tsan/suppressions_free_threading.txt"
1313
elif [[ "${PYTHON_VARIANT}" == "default" ]]; then

0 commit comments

Comments
 (0)