Skip to content

[DEV1A-6041] - Code Merge for VS Code Environment Configurator – 2025.1.0 Release #36

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 21, 2025
Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Change Log
## 0.2.16

- CVE Vulnerability Fixes and Enhanced Support for Multiple Inputs in Setvars

## 0.2.15

- 3rd Party component dependency version update - Bumps micromatch
Expand Down
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,21 @@ For this you need:

Also the name of the configuration file can be arbitrary, but it will be used as an environment identifier. Using different files with the same name will result in the reinitialization of the current environment and not the creation of a new one.

### Passing arguments to component `vars` script through custom setvars configuration file.

Starting with the 2025.1 release, config file support arguments i.e (key=value1,value2,value3,...) to component `env/vars` scripts

Create a `config.txt` file that contains the following lines with list of arguments:

```
mkl=latest,lp64 ilp64
compiler=latest,--include-intel-llvm,vs2022
dpcpp-ct=latest,vs2017
tbb=2022.1,all
```
In above example the first argument is required, while the remaining arguments are optional.
In "listofvalues" the first argument always names a version directory that is at the top level of the component directory. This can also be a symlink.The first argument is followed by a comma separated list of arguments.

## Contributing
Install Visual Studio Code (at least version 1.83.1) and open this project within it.
You may also need `node+npm` installed:
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "oneapi-environment-configurator",
"displayName": "Environment Configurator for Intel Software Developer Tools",
"description": "Configure environment for working with Intel® oneAPI Toolkits",
"version": "0.2.15",
"version": "0.2.16",
"license": "MIT",
"icon": "media/oneapi-logo.png",
"publisher": "intel-corporation",
Expand Down