2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-09-02 15:45:12 +00:00

Fix build with LTO

This commit is contained in:
Ilya Fedin
2021-05-19 13:24:15 +04:00
committed by John Preston
parent fbe4e3f0ec
commit e0d6faf45b
3 changed files with 2 additions and 17 deletions

View File

@@ -59,7 +59,6 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include <unistd.h>
#include <dirent.h>
#include <pwd.h>
#include <malloc.h>
#include <iostream>
@@ -746,20 +745,6 @@ int psFixPrevious() {
namespace Platform {
void start() {
// Avoid stripping custom allocator methods.
const auto address = [](auto method) {
return reinterpret_cast<uint64>(method);
};
const auto value = address(malloc)
+ address(calloc)
+ address(realloc)
+ address(free)
+ address(aligned_alloc)
+ address(malloc_usable_size)
+ address(memalign)
+ address(posix_memalign);
DEBUG_LOG(("Malloc addresses %1.").arg(value ? "non-null" : "null"));
LOG(("Launcher filename: %1").arg(QGuiApplication::desktopFileName()));
qputenv("PULSE_PROP_application.name", AppName.utf8());