We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 308093a commit 3c224baCopy full SHA for 3c224ba
1 file changed
Tools/configure/conf_platform.py
@@ -655,7 +655,7 @@ def check_posix_shmem(v):
655
v.POSIXSHMEM_CFLAGS = "-I$(srcdir)/Modules/_multiprocessing"
656
v.POSIXSHMEM_LIBS = ""
657
with pyconf.save_env():
658
- shm_open_result = pyconf.search_libs("shm_open", ["rt"])
+ shm_open_result = pyconf.search_libs("shm_open", ["rt"], required=False)
659
posixshmem_libs = "-lrt" if shm_open_result == "-lrt" else ""
660
have_posix_shmem = pyconf.check_func(
661
"shm_open", headers=["sys/mman.h"]
0 commit comments