summary refs log tree commit diff
path: root/pkgs/development/compilers/llvm/9/lldb/default.nix
Commit message (Collapse)AuthorAge
* Merge pull request #207863 from patryk4815/fix-lldb7c6f434c2023-02-04
|\ | | | | lldb_14: fix broken python3 site-packages and lua5_3
| * llvmPackages_9.lldb: enable installCheckPhase, add messagepsondej2022-12-26
| |
* | llvmPackages_9.lldb: fix darwin buildDmitry Kalinkin2023-01-03
|/ | | | Co-authored-by: Weijia Wang <9713184+wegank@users.noreply.github.com>
* treewide: pkgs/development/compilers: mark broken for darwinRick van Schijndel2022-05-30
|
* lldb: python into lib & wrap binarytcmal2021-06-09
|
* lldb: fix python lldb librarytcmal2021-06-08
| | | | | | _lldb.so is now properly symlinked to the shared library. applies to lldb 8 through 12. fixes #125183
* llvmPackages: Fix more inconsistenciesJohn Ericson2021-05-12
| | | | | | | | | | | | | | The main thing was using `llvm_meta` in all versions. Secondarily: - libunwindx7: Forgot to split outputs - libcxx{,abi} 12: Forgot to apply output-splitting patches. - simplify `useLLVM` stdenv-switching logic. - openmp always gets its own directory
* llvmPackages: Multuple outputs for everythtingAndrew Childs2021-04-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also begin to start work on cross compilation, though that will have to be finished later. The patches are based on the first version of https://reviews.llvm.org/D99484. It's very annoying to do the back-porting but the review has uncovered nothing super major so I'm fine sticking with what I've got. Beyond making the outputs work, I also strove to re-sync the packages, as they have been drifting pointlessly apart for some time. ---- Other misc notes, highly incomplete - lvm-config-native and llvm-config are put in `dev` because they are tools just for build time. - Clang no longer has an lld dep. That was introduced in db29857eb391ed002046090851a44c452b80bdbd, but if clang needs help finding lld when it is used we should just pass it flags / put in the resource dir. Providing it at build time increases critical path length for no good reason. ---- A note on `nativeCC`: `stdenv` takes tools from the previous stage, so: 1. `pkgsBuildBuild`: `(?1, x, x)` 2. `pkgsBuildBuild.stdenv.cc`: `(?0, ?1, x)` while: 1. `pkgsBuildBuild`: `(?1, x, x)` 2. `pkgsBuildBuild.targetPackages`: `(x, x, ?2)` 3. `pkgsBuildBuild.targetPackages.stdenv.cc`: `(?1, x, x)`
* llvmPackages: Organize filesJohn Ericson2021-03-24
Always do pkg/default.nix not pkg.nix; use directories to avoid prefixing patches and other files.