[Lldb-commits] [PATCH] D30779: dotest.py: remove the ability to specify different architectures/compilers in a single invocation
Zachary Turner via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Thu Mar 9 17:56:32 PST 2017
zturner added a comment.
Agree that it will be nice to see this gone. I suspect there is even more complexity than what you have here that can be removed if we aren't supporting this, but this seems like a good start.
================
Comment at: packages/Python/lldbsuite/test/dotest.py:1204
+ os.environ["ARCH"] = configuration.arch
+ os.environ["CC"] = configuration.compiler
+ configString = "arch=%s compiler=%s" % (configuration.arch,
----------------
Should you be setting `CXX` here?
https://reviews.llvm.org/D30779
More information about the lldb-commits
mailing list