Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.

[SYCL] Allow "=" sign as part of value in LIT_EXTRA_ENVIRONMENT key/value pairs #1614

Merged
merged 1 commit into from
Feb 23, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion SYCL/lit.cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
if config.extra_environment:
lit_config.note("Extra environment variables")
for env_pair in config.extra_environment.split(','):
[var,val]=env_pair.split("=")
[var,val]=env_pair.split("=", 1)
if val:
llvm_config.with_environment(var,val,append_path=True)
lit_config.note("\t"+var+"="+val)
Expand Down