mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-07-27 11:22:34 +00:00
Don't enable intel-pt on Ubuntu Bionic
This commit is contained in:
parent
1b04fdf25e
commit
4428d2a59e
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,3 +1,9 @@
|
|||||||
|
llvm-toolchain-19 (1:19.1.0-5) unstable; urgency=medium
|
||||||
|
|
||||||
|
* Don't enable intel-pt on Ubuntu Bionic
|
||||||
|
|
||||||
|
-- Sylvestre Ledru <sylvestre@debian.org> Mon, 23 Sep 2024 13:20:42 +0200
|
||||||
|
|
||||||
llvm-toolchain-19 (1:19.1.0-4) unstable; urgency=medium
|
llvm-toolchain-19 (1:19.1.0-4) unstable; urgency=medium
|
||||||
|
|
||||||
[ Sylvestre Ledru ]
|
[ Sylvestre Ledru ]
|
||||||
|
7
debian/rules
vendored
7
debian/rules
vendored
@ -492,8 +492,15 @@ ifneq (,$(filter $(DEB_HOST_ARCH),$(LLDB_ARCHS)))
|
|||||||
STAGE_ALL_CMAKE_EXTRA += -DLLDB_ENABLE_LUA=OFF
|
STAGE_ALL_CMAKE_EXTRA += -DLLDB_ENABLE_LUA=OFF
|
||||||
PROJECTS+=;lldb
|
PROJECTS+=;lldb
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter $(DEB_HOST_ARCH),i386 amd64))
|
ifneq (,$(filter $(DEB_HOST_ARCH),i386 amd64))
|
||||||
|
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)
|
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
|
LLDB_PYTHON_DISABLE_DISTRO := bionic buster
|
||||||
|
Loading…
Reference in New Issue
Block a user