summaryrefslogtreecommitdiffstats
path: root/recipes-core/packagegroups
Commit message (Collapse)AuthorAgeFilesLines
* packagegroup-sdk: switch ICXSDK to intel-oneapi-toolkit sub-packagesYogesh Tyagi2026-04-292-2/+2
| | | | | | | | | | | | | | | | | The 2024.0 standalone recipes provided per-component package names (intel-oneapi-dpcpp-cpp{,-dev}, intel-oneapi-dpcpp-cpp-runtime{,-dev}) that have been replaced in the unified intel-oneapi-toolkit_2026 recipe by the canonical sub-package layout. Update the SDK host and target packagegroup bbappends to reference the new names directly: intel-oneapi-toolkit-compiler - C/C++/SYCL compiler + headers intel-oneapi-toolkit-runtime - shared runtime libraries The toolkit-compiler sub-package already contains the headers and CMake/pkg-config files the prior *-dev sub-packages exposed, so a separate -dev append is no longer needed. Signed-off-by: Yogesh Tyagi <yogesh.tyagi@intel.com>
* sdk: Add support for adding icx to SDKNaveen Saini2022-11-232-0/+2
| | | | | | | | | | | | | | | | Also export ICXCC, ICXCXX, ICXCPP, ICXLD, ICXAR in SDK environment which can then be used to compile applications. For example, to build an sample SYCL application using SDK: -> Source oneAPI compiler setup script (from your installed path): $ source /your-sdk-path/oecore-x86_64/sysroots/skylake-64-oe-linux/opt/intel/oneapi/compiler/2022.1.0/env/vars.sh -> Build sample SYCL app (i.e simple-sycl-app.cpp): $ $ICXCXX -fsycl simple-sycl-app.cpp -o simple-sycl-app -lsvml -lirng -limf -lintlc Signed-off-by: Naveen Saini <naveen.kumar.saini@intel.com> Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
* icc: drop Intel C++ classic compiler supportNaveen Saini2022-11-232-4/+0
| | | | | | | | Support for Intel(R) oneAPI DPC++/C++ (icx) compiler is being added. So remove the support for the classic compiler. Signed-off-by: Naveen Saini <naveen.kumar.saini@intel.com> Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
* iccsdk: install icc specific packages only for meta-intel machinesNaveen Saini2022-10-201-1/+1
| | | | | | | And disable ICCSDK bu default. Signed-off-by: Naveen Saini <naveen.kumar.saini@intel.com> Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
* sdk: Add support for adding icc to SDKNaveen Saini2022-10-122-0/+4
Also export ICC, ICCCXX, ICCCPP, ICCLD, ICCAR in SDK environment which can then be used to compile applications in SDK Signed-off-by: Naveen Saini <naveen.kumar.saini@intel.com> Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>