File tree Expand file tree Collapse file tree 3 files changed +11
-7
lines changed Expand file tree Collapse file tree 3 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 1
1
# Level zero loader changelog
2
+ ## v1.24.2
3
+ * Fix scorecard CI
4
+ * Add build instructions for windows
5
+ * Check if compile flags are supported: /GL, /QSpectre, /guard: cf
2
6
## v1.24.1
3
7
* Changes to get ze_loader loaded for Android
4
8
## v1.24.0
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ if(MSVC AND (MSVC_VERSION LESS 1900))
13
13
endif ()
14
14
15
15
# This project follows semantic versioning (https://semver.org/)
16
- project (level-zero VERSION 1.24.1 )
16
+ project (level-zero VERSION 1.24.2 )
17
17
18
18
include (GNUInstallDirs)
19
19
@@ -98,10 +98,10 @@ include(CheckCXXCompilerFlag)
98
98
function (add_cxx_flag_if_supported flag)
99
99
mangle_name("${flag} " flagname)
100
100
check_cxx_compiler_flag("${flag} " "CXX_SUPPORTS_${flagname} _FLAG" )
101
- if (CXX_SUPPORTS_${flagname} _FLAG)
102
- set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${flag} " )
103
- set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${flag} " )
104
- endif ()
101
+ if (CXX_SUPPORTS_${flagname} _FLAG)
102
+ set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${flag} " PARENT_SCOPE )
103
+ set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${flag} " PARENT_SCOPE )
104
+ endif ()
105
105
endfunction ()
106
106
107
107
if (MSVC )
Original file line number Diff line number Diff line change 1
- 1.24.1
2
- f99c0560-281a-4879-9cc6-e68e3bdf7533
1
+ 1.24.2
2
+ bd6c40ee-9afb-4a30-9d25-4c9d6abd0dda
You can’t perform that action at this time.
0 commit comments