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 26e3c61 commit bd8fcebCopy full SHA for bd8fceb
workspace_tools/build_release.py
@@ -177,7 +177,7 @@
177
if options.toolchains:
178
print "Only building using the following toolchains: %s" % (options.toolchains)
179
toolchainSet = set(toolchains)
180
- toolchains = toolchainSet and set((options.toolchains).split(','))
+ toolchains = toolchainSet.intersection(set((options.toolchains).split(',')))
181
182
for toolchain in toolchains:
183
id = "%s::%s" % (target_name, toolchain)
0 commit comments