[Lldb-commits] [PATCH] D114742: [lldb] Search PrivateFrameworks when using an internal SDK
Jonas Devlieghere via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Tue Nov 30 11:25:15 PST 2021
JDevlieghere added inline comments.
================
Comment at: lldb/packages/Python/lldbsuite/test/builders/darwin.py:86
+ private_frameworks = os.path.join(sdk_root, 'System','Library','PrivateFrameworks')
+ args['FRAMEWORK_INCLUDES'] = '-F{}'.format(private_frameworks)
+
----------------
aprantl wrote:
> Just curious: why not
> ```
> args['FRAMEWORK_INCLUDES'] = '-F' + private_frameworks
> ```
> ?
Mostly for consistency with the rest of the file, but also personal preference. It's no coincidence that the rest of the file uses `format` too. I like f-strings even more, but they're Python 3.something only.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D114742/new/
https://reviews.llvm.org/D114742
More information about the lldb-commits
mailing list