mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-07-27 09:50:53 +00:00
Don't enable intel-pt on Ubuntu Bionic
This commit is contained in:
parent
c85df2b2ae
commit
12059d75d8
8
debian/changelog
vendored
8
debian/changelog
vendored
@ -1,15 +1,11 @@
|
||||
llvm-toolchain-18 (1:18.1.8-12) UNRELEASED; urgency=medium
|
||||
|
||||
<<<<<<<
|
||||
* Ensure that at least 1 CPU is used for build
|
||||
(Closes: #1082359)
|
||||
=======
|
||||
* Ensure that at least 1 CPU is used for build
|
||||
Thanks to Santiago Vila for the patch
|
||||
(Closes: #1082359)
|
||||
>>>>>>>
|
||||
* Don't enable intel-pt on Ubuntu Bionic
|
||||
|
||||
-- Sylvestre Ledru <sylvestre@debian.org> Fri, 20 Sep 2024 13:22:50 +0200
|
||||
-- Sylvestre Ledru <sylvestre@debian.org> Mon, 23 Sep 2024 13:23:31 +0200
|
||||
|
||||
llvm-toolchain-18 (1:18.1.8-11) unstable; urgency=medium
|
||||
|
||||
|
8
debian/rules
vendored
8
debian/rules
vendored
@ -463,11 +463,13 @@ else
|
||||
PROJECTS+=;lldb
|
||||
endif
|
||||
|
||||
LLDB_PT_DISABLE_DISTRO := bionic
|
||||
|
||||
ifneq (,$(filter $(DEB_HOST_ARCH),i386 amd64))
|
||||
ifneq (,$(filter $(LLDB_PT_DISABLE_DISTRO),$(DISTRO)))
|
||||
INTEL_PT_DISABLE_DISTRO := bionic
|
||||
# Disable intel-pt on old distro, fails on bionic (too old)
|
||||
ifeq (,$(filter $(DISTRO), $(INTEL_PT_DISABLE_DISTRO)))
|
||||
STAGE_ALL_CMAKE_EXTRA += -DLLDB_BUILD_INTEL_PT=ON -DLIBIPT_INCLUDE_PATH=/usr/include -DLIBIPT_LIBRARY_PATH=/usr/lib/$(DEB_HOST_MULTIARCH)
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
LLDB_PYTHON_DISABLE_DISTRO := bionic buster
|
||||
|
Loading…
Reference in New Issue
Block a user