diff --git a/debian/control b/debian/control index 30b0210..a1c3fad 100644 --- a/debian/control +++ b/debian/control @@ -7,7 +7,6 @@ Build-Depends: debhelper-compat (= 11), pkg-config, libcap-dev, - libjemalloc-dev, qt5-qmake, qtbase5-dev, qttools5-dev, diff --git a/src/loader/CMakeLists.txt b/src/loader/CMakeLists.txt index e108095..a96a9d3 100644 --- a/src/loader/CMakeLists.txt +++ b/src/loader/CMakeLists.txt @@ -2,10 +2,6 @@ set(BIN_NAME dde-application-loader) pkg_check_modules(LIBCAP REQUIRED IMPORTED_TARGET libcap) -#TODO: use jemalloc to temporary circumvention of crash issues, -#find the root cause and remove jemalloc -pkg_check_modules(JEMALLOC REQUIRED IMPORTED_TARGET jemalloc) - set(SRCS ./main.cpp ../modules/tools/desktop_deconstruction.hpp @@ -40,7 +36,6 @@ add_executable(${BIN_NAME} ${SRCS}) target_link_libraries(${BIN_NAME} pthread PkgConfig::LIBCAP - PkgConfig::JEMALLOC stdc++fs Qt5::Core ) diff --git a/src/service/CMakeLists.txt b/src/service/CMakeLists.txt index 5f44ee3..d0d2030 100644 --- a/src/service/CMakeLists.txt +++ b/src/service/CMakeLists.txt @@ -16,10 +16,6 @@ pkg_check_modules(GIO REQUIRED IMPORTED_TARGET gio-2.0 gio-unix-2.0) pkg_check_modules(GLib REQUIRED IMPORTED_TARGET glib-2.0) pkg_check_modules(QGSettings REQUIRED IMPORTED_TARGET gsettings-qt) -#TODO: use jemalloc to temporary circumvention of crash issues, -#find the root cause and remove jemalloc -pkg_check_modules(JEMALLOC REQUIRED IMPORTED_TARGET jemalloc) - qt5_add_dbus_adaptor(ADAPTER_SOURCES ../../dbus/org.deepin.dde.Application1.Manager.xml impl/application_manager.h @@ -66,7 +62,6 @@ target_link_libraries(${BIN_NAME} PkgConfig::GIO PkgConfig::GLib PkgConfig::QGSettings - PkgConfig::JEMALLOC ${DtkWidget_LIBRARIES} )