From 63fbd2fff253642609ac84cf07fd2d12785cefae Mon Sep 17 00:00:00 2001 From: Alex Lopez Date: Thu, 25 Jan 2024 10:36:32 +0100 Subject: [PATCH] Don't set rpath as it's not needed --- .builders/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.builders/build.py b/.builders/build.py index 7a7b3e96759d4..f1cf092c82dff 100644 --- a/.builders/build.py +++ b/.builders/build.py @@ -113,7 +113,7 @@ def build_macos(): # Path where we'll install libraries that we build 'DD_PREFIX_PATH': prefix_path, # Common compilation flags - 'LDFLAGS': f'-Wl,-rpath,{prefix_path}/lib -L{prefix_path}/lib', + 'LDFLAGS': f'-L{prefix_path}/lib', 'CFLAGS': f'-I{prefix_path}/include -O2', # Build command for extra platform-specific build steps 'DD_BUILD_COMMAND': f'bash {build_context_dir}/extra_build.sh'