Compare commits
10 Commits
ef06699448
...
f278552b4c
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f278552b4c | ||
|
|
6b1bd085ee | ||
|
|
75bb152e04 | ||
|
|
69dca12cea | ||
|
|
a0282fa8ec | ||
|
|
e425251e1f | ||
|
|
3258ed9d56 | ||
|
|
ef1a8266d4 | ||
|
|
7e8cf37df6 | ||
|
|
c06a9997fd |
18
README.en.md
18
README.en.md
@ -1,24 +1,8 @@
|
||||
# lldb
|
||||
|
||||
#### Description
|
||||
{**When you're done, you can delete the content in this README and update the file with details for others getting started with your repository**}
|
||||
The LLDB project builds on libraries provided by LLVM and Clang to provide a great native debugger. It uses the Clang ASTs and expression parser, LLVM JIT, LLVM disassembler, etc so that it provides an experience that "just works". It is also blazing fast and much more memory efficient than GDB at loading symbols.
|
||||
|
||||
#### Software Architecture
|
||||
Software architecture description
|
||||
|
||||
#### Installation
|
||||
|
||||
1. xxxx
|
||||
2. xxxx
|
||||
3. xxxx
|
||||
|
||||
#### Instructions
|
||||
|
||||
1. xxxx
|
||||
2. xxxx
|
||||
3. xxxx
|
||||
|
||||
#### Contribution
|
||||
|
||||
1. Fork the repository
|
||||
2. Create Feat_xxx branch
|
||||
|
||||
20
README.md
20
README.md
@ -1,25 +1,7 @@
|
||||
# lldb
|
||||
|
||||
#### 介绍
|
||||
{**以下是码云平台说明,您可以替换此简介**
|
||||
码云是 OSCHINA 推出的基于 Git 的代码托管平台(同时支持 SVN)。专为开发者提供稳定、高效、安全的云端软件开发协作平台
|
||||
无论是个人、团队、或是企业,都能够用码云实现代码托管、项目管理、协作开发。企业项目请看 [https://gitee.com/enterprises](https://gitee.com/enterprises)}
|
||||
|
||||
#### 软件架构
|
||||
软件架构说明
|
||||
|
||||
|
||||
#### 安装教程
|
||||
|
||||
1. xxxx
|
||||
2. xxxx
|
||||
3. xxxx
|
||||
|
||||
#### 使用说明
|
||||
|
||||
1. xxxx
|
||||
2. xxxx
|
||||
3. xxxx
|
||||
The LLDB project builds on libraries provided by LLVM and Clang to provide a great native debugger. It uses the Clang ASTs and expression parser, LLVM JIT, LLVM disassembler, etc so that it provides an experience that "just works". It is also blazing fast and much more memory efficient than GDB at loading symbols.
|
||||
|
||||
#### 参与贡献
|
||||
|
||||
|
||||
Binary file not shown.
68
lldb.spec
68
lldb.spec
@ -1,15 +1,32 @@
|
||||
%undefine __cmake_in_source_build
|
||||
%bcond_without bisheng_autotuner
|
||||
|
||||
Name: lldb
|
||||
Version: 10.0.1
|
||||
Release: 1
|
||||
Version: 17.0.6
|
||||
Release: 3
|
||||
Summary: Next generation high-performance debugger
|
||||
|
||||
License: NCSA
|
||||
URL: http://lldb.llvm.org/
|
||||
Source0: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{version}/%{name}-%{version}.src.tar.xz
|
||||
|
||||
BuildRequires: cmake llvm-devel = %{version} llvm-test = %{version} clang-devel = %{version}
|
||||
BuildRequires: ncurses-devel swig llvm-static = %{version} libffi-devel zlib-devel
|
||||
BuildRequires: libxml2-devel libedit-devel python3-lit
|
||||
BuildRequires: gcc
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: cmake
|
||||
BuildRequires: clang
|
||||
BuildRequires: llvm-devel = %{version}
|
||||
BuildRequires: llvm-test = %{version}
|
||||
BuildRequires: clang-devel = %{version}
|
||||
BuildRequires: clang-tools-extra = %{version}
|
||||
BuildRequires: ncurses-devel
|
||||
BuildRequires: swig
|
||||
BuildRequires: llvm-static = %{version}
|
||||
BuildRequires: libffi-devel
|
||||
BuildRequires: zlib-devel
|
||||
BuildRequires: libxml2-devel
|
||||
BuildRequires: libedit-devel
|
||||
BuildRequires: python3-lit
|
||||
BuildRequires: multilib-rpm-config
|
||||
|
||||
Requires: python3-lldb
|
||||
|
||||
@ -21,7 +38,7 @@ disassembler.
|
||||
|
||||
%package devel
|
||||
Summary: Development header files for LLDB
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
|
||||
%description devel
|
||||
The package contains header files for the LLDB debugger.
|
||||
@ -30,7 +47,10 @@ The package contains header files for the LLDB debugger.
|
||||
%{?python_provide:%python_provide python3-lldb}
|
||||
Summary: Python module for LLDB
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: python3-setuptools
|
||||
Requires: python3-six
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
BuildRequires: llvm-cmake-utils = %{version}
|
||||
|
||||
%description -n python3-lldb
|
||||
The package contains the LLDB Python module.
|
||||
@ -40,17 +60,15 @@ The package contains the LLDB Python module.
|
||||
|
||||
%build
|
||||
|
||||
mkdir -p _build
|
||||
cd _build
|
||||
|
||||
# Python version detection is broken
|
||||
LDFLAGS="%{__global_ldflags} -lpthread -ldl"
|
||||
LDFLAGS="%{build_ldflags} -lpthread -ldl"
|
||||
|
||||
CFLAGS="%{optflags} -Wno-error=format-security"
|
||||
CXXFLAGS="%{optflags} -Wno-error=format-security"
|
||||
|
||||
%cmake .. \
|
||||
%cmake \
|
||||
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
||||
-DCMAKE_SKIP_RPATH:BOOL=ON \
|
||||
-DLLVM_LINK_LLVM_DYLIB:BOOL=ON \
|
||||
-DLLVM_CONFIG:FILEPATH=/usr/bin/llvm-config-%{__isa_bits} \
|
||||
\
|
||||
@ -61,6 +79,9 @@ CXXFLAGS="%{optflags} -Wno-error=format-security"
|
||||
-DLLVM_LIBDIR_SUFFIX=64 \
|
||||
%else
|
||||
-DLLVM_LIBDIR_SUFFIX= \
|
||||
%endif
|
||||
%if %{with bisheng_autotuner}
|
||||
-DLLVM_ENABLE_AUTOTUNER=ON \
|
||||
%endif
|
||||
\
|
||||
-DPYTHON_EXECUTABLE:STRING=%{__python3} \
|
||||
@ -68,14 +89,14 @@ CXXFLAGS="%{optflags} -Wno-error=format-security"
|
||||
-DPYTHON_VERSION_MINOR:STRING=$(%{__python3} -c "import sys; print(sys.version_info.minor)") \
|
||||
-DLLVM_EXTERNAL_LIT=%{_bindir}/lit \
|
||||
-DCLANG_LINK_CLANG_DYLIB=ON \
|
||||
-DLLVM_COMMON_CMAKE_UTILS=%{_datadir}/llvm/cmake \
|
||||
-DLLVM_LIT_ARGS="-sv \
|
||||
--path %{_libdir}/llvm" \
|
||||
|
||||
make %{?_smp_mflags}
|
||||
%cmake_build
|
||||
|
||||
%install
|
||||
cd _build
|
||||
make install DESTDIR=%{buildroot}
|
||||
%cmake_install
|
||||
|
||||
# remove static libraries
|
||||
rm -fv %{buildroot}%{_libdir}/*.a
|
||||
@ -88,9 +109,8 @@ ln -vsf "../../../${liblldb}" %{buildroot}%{python3_sitearch}/lldb/_lldb.so
|
||||
# remove bundled six.py
|
||||
rm -f %{buildroot}%{python3_sitearch}/six.*
|
||||
|
||||
%ldconfig_scriptlets
|
||||
|
||||
%files
|
||||
%license LICENSE.TXT
|
||||
%{_bindir}/lldb*
|
||||
%{_libdir}/liblldb.so.*
|
||||
%{_libdir}/liblldbIntelFeatures.so.*
|
||||
@ -103,7 +123,23 @@ rm -f %{buildroot}%{python3_sitearch}/six.*
|
||||
%{python3_sitearch}/lldb
|
||||
|
||||
%changelog
|
||||
* Wed Nov 13 2024 Funda Wang <fundawang@yeah.net> - 17.0.6-3
|
||||
- adopt to new cmake macro
|
||||
|
||||
* Tue Aug 20 2024 liyunfei <liyunfei33@huawei.com> - 17.0.6-2
|
||||
- Add BiSheng Autotuner support.
|
||||
|
||||
* Mon Dec 4 2023 zhoujing <zhoujing@huawei.com> 17.0.6-1
|
||||
- upgrade lldb to 17.0.6
|
||||
|
||||
* Mon Jul 17 2023 cf-zhao <zhaochuanfeng@huawei.com> 15.0.7-1
|
||||
- upgrade lldb to 15.0.7
|
||||
|
||||
* Thu Jan 06 2022 Chen Chen <chen_aka_jan@163.com> - 12.0.1-1
|
||||
- upgrade lldb to 12.0.1
|
||||
|
||||
* Mon Oct 12 2020 wangxiao <wangxiao65@huawei.com> - 10.0.1-1
|
||||
- upgrade lldb to 10.0.1
|
||||
|
||||
* Mon Dec 2 2019 likexin <likexin@huawei.com> 7.0.0-2
|
||||
- Package init
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user