[issue36353] rpath incorrectly handled on OSX by build_ext

2021-02-03 Thread Steve Dower
Steve Dower added the comment: Distutils is now deprecated (see PEP 632) and all tagged issues are being closed. From now until removal, only release blocking issues will be considered for distutils. If this issue does not relate to distutils, please remove the component and reopen it. If y

[issue36353] rpath incorrectly handled on OSX by build_ext

2019-03-18 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch pull_requests: +12372 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-l

[issue36353] rpath incorrectly handled on OSX by build_ext

2019-03-18 Thread Toon Verstraelen
New submission from Toon Verstraelen : When using the '-R' option of build_ext on OSX, e.g. python setup.py -R some/path it gets translated to the following clang compiler argument: -L some/path while it should be -Wl,-rpath,some/path See clang documentation for details: https://clang.ll