You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the SBOM contains a Linux gcc/glibc version field, but there is no similar field for Windows VS C++ and Mac Xcode versions, the values are available from the "Tool Summary" field, subject to some text processing...
The text was updated successfully, but these errors were encountered:
At the moment I'm having to feed the SBOM through this to pull out the correct compiler name/version from the windows and mac ones: jq '.components[0].properties[] | select(.name|test("Build Tools Summary")).value' | sed -e 's/^.*Toolchain: //g' -e 's/\*.*//g'
Which gives me output like this (for JDK17):
Windows: microsoft (Microsoft Visual Studio 2019)
Mac: clang (clang/LLVM from Xcode 10.3)
Once this has been implemented I'll make the corresponding adjustments to the automation in #3484
Currently the SBOM contains a Linux gcc/glibc version field, but there is no similar field for Windows VS C++ and Mac Xcode versions, the values are available from the "Tool Summary" field, subject to some text processing...
The text was updated successfully, but these errors were encountered: