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 90691c8 commit cbe4116Copy full SHA for cbe4116
src/bootstrap/bootstrap.py
@@ -648,7 +648,8 @@ def update_submodules(self):
648
if not ((module.endswith("llvm") and
649
self.get_toml('llvm-config')) or
650
(module.endswith("jemalloc") and
651
- self.get_toml('jemalloc')))]
+ (self.get_toml('use-jemalloc') == "false" or
652
+ self.get_toml('jemalloc'))))]
653
run(["git", "submodule", "update",
654
"--init", "--recursive"] + submodules,
655
cwd=self.rust_root, verbose=self.verbose)
0 commit comments