Skip to content
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## [6.2.1]

### Fixed
- CMake: Linux: overwrite FORTIFY_SOURCE from distribution

## [6.2.0]

### Changed
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.2.0
6.2.1
6 changes: 3 additions & 3 deletions linux.cmake
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: Apache-2.0
# Copyright (C) 2014-2024 Intel Corporation
# Copyright (C) 2014-2026 Intel Corporation
set(TEE_SOURCES src/linux/metee_linux.c src/linux/mei.c)

add_library(${PROJECT_NAME} ${TEE_SOURCES})
Expand Down Expand Up @@ -55,7 +55,7 @@ target_compile_options(
# Security options
target_compile_options(
${PROJECT_NAME}
PRIVATE -fstack-protector-strong -D_FORTIFY_SOURCE=2 -O2 -Wformat
PRIVATE -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -O2 -Wformat
-Wformat-security
PRIVATE $<$<C_COMPILER_ID:GNU>:-fno-strict-overflow>
PRIVATE $<$<C_COMPILER_ID:GNU>:-fno-delete-null-pointer-checks>
Expand All @@ -71,4 +71,4 @@ endif()
target_compile_definitions(${PROJECT_NAME} PRIVATE -D_GNU_SOURCE)
if(ANDROID)
target_link_libraries(${PROJECT_NAME} PRIVATE log)
endif()
endif()
Loading