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
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
deepin-boot-maker (6.0.6) unstable; urgency=medium

* chore: Comment out tests subdirectory in src.pro

-- dengzhongyuan <dengzhongyuan@uniontech.com> Thu, 19 Jun 2025 19:46:23 +0800

deepin-boot-maker (6.0.5) unstable; urgency=medium

* chore: Update compiler flags for security enhancements
Expand Down
6 changes: 5 additions & 1 deletion src/src.pro
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@ linux {

}
SUBDIRS += app
SUBDIRS += tests


#SUBDIRS += tests


mac* {
TRANSLATIONS_NAME = deepin-boot-maker
TRANSLATIONS += $$PWD/translations/$${TRANSLATIONS_NAME}.ts \
Expand Down
4 changes: 2 additions & 2 deletions src/tests/tests.pro
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ CONFIG(debug, debug|release) {

#添加安全编译参数
QMAKE_LFLAGS += -z noexecstack -pie -z relro -z now
QMAKE_CFLAGS += -fstack-protector-all -fPIC
QMAKE_CXXFLAGS += -fstack-protector-all -fno-access-control -fPIC
QMAKE_CFLAGS += -fstack-protector-all -fPIE
QMAKE_CXXFLAGS += -fstack-protector-all -fno-access-control -fPIE


QT += core gui widgets testlib
Expand Down
Loading