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: 3 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@ if(CMAKE_BUILD_TYPE STREQUAL "Release")

set(CMAKE_VERBOSE_MAKEFILE ON)

set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -ffile-prefix-map=${CMAKE_SOURCE_DIR}=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -ffile-prefix-map=${CMAKE_SOURCE_DIR}=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection")
set(HARDENING_FLAGS "-Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -ffile-prefix-map=${CMAKE_SOURCE_DIR}=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${HARDENING_FLAGS}")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${HARDENING_FLAGS}")
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,-z,relro -Wl,-z,now")
endif()

Expand Down
2 changes: 1 addition & 1 deletion arm64/linglong.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version: '1'
package:
id: org.deepin.draw
name: deepin-draw
version: 6.5.35.1
version: 6.5.36.1
kind: app
description: |
Draw for deepin os.
Expand Down
7 changes: 7 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
deepin-draw (6.5.36) unstable; urgency=medium

* build(debian): separate Qt5/Qt6 build configurations for V25/V20 support
* fix: Fix build fail for invalid compiler flags

-- wangrong <wangrong@uniontech.com> Thu, 29 Jan 2026 21:29:58 +0800

deepin-draw (6.5.35) unstable; urgency=medium

* chore: Update compiler flags for security enhancements
Expand Down
2 changes: 1 addition & 1 deletion linglong.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version: '1'
package:
id: org.deepin.draw
name: deepin-draw
version: 6.5.35.1
version: 6.5.36.1
kind: app
description: |
Draw for deepin os.
Expand Down
2 changes: 1 addition & 1 deletion loong64/linglong.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version: '1'
package:
id: org.deepin.draw
name: deepin-draw
version: 6.5.35.1
version: 6.5.36.1
kind: app
description: |
Draw for deepin os.
Expand Down
2 changes: 1 addition & 1 deletion sw64/linglong.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version: '1'
package:
id: org.deepin.draw
name: deepin-draw
version: 6.5.35.1
version: 6.5.36.1
kind: app
description: |
Draw for deepin os.
Expand Down
Loading