about summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorRahul Butani <rrbutani@users.noreply.github.com>2022-10-07 22:47:47 -0500
committerRahul Butani <rrbutani@users.noreply.github.com>2023-01-27 13:29:23 -0800
commitf8cbbdd05b167185fdcabd5f494daa02215667b3 (patch)
tree05d07c7d061bcd1dc1132e528b85f402cb60f556 /pkgs/development/compilers
parent8f16b4be50aed6d9497f0bfa1f4456f869b4994d (diff)
downloadnixlib-f8cbbdd05b167185fdcabd5f494daa02215667b3.tar
nixlib-f8cbbdd05b167185fdcabd5f494daa02215667b3.tar.gz
nixlib-f8cbbdd05b167185fdcabd5f494daa02215667b3.tar.bz2
nixlib-f8cbbdd05b167185fdcabd5f494daa02215667b3.tar.lz
nixlib-f8cbbdd05b167185fdcabd5f494daa02215667b3.tar.xz
nixlib-f8cbbdd05b167185fdcabd5f494daa02215667b3.tar.zst
nixlib-f8cbbdd05b167185fdcabd5f494daa02215667b3.zip
llvmPackages_15: misc fixes, notes
Diffstat (limited to 'pkgs/development/compilers')
-rw-r--r--pkgs/development/compilers/llvm/15/clang/default.nix3
-rw-r--r--pkgs/development/compilers/llvm/15/lldb/default.nix3
2 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/compilers/llvm/15/clang/default.nix b/pkgs/development/compilers/llvm/15/clang/default.nix
index faf3452c6a4e..b0671150a7bd 100644
--- a/pkgs/development/compilers/llvm/15/clang/default.nix
+++ b/pkgs/development/compilers/llvm/15/clang/default.nix
@@ -57,9 +57,6 @@ let
       sed -i -e 's/DriverArgs.hasArg(options::OPT_nostdlibinc)/true/' \
              -e 's/Args.hasArg(options::OPT_nostdlibinc)/true/' \
              lib/Driver/ToolChains/*.cpp
-
-      # Patch for standalone doc building
-      sed -i '1s,^,find_package(Sphinx REQUIRED)\n,' docs/CMakeLists.txt
     '' + lib.optionalString stdenv.hostPlatform.isMusl ''
       sed -i -e 's/lgcc_s/lgcc_eh/' lib/Driver/ToolChains/*.cpp
     '';
diff --git a/pkgs/development/compilers/llvm/15/lldb/default.nix b/pkgs/development/compilers/llvm/15/lldb/default.nix
index 15bcb40c3b43..4b50b79cf613 100644
--- a/pkgs/development/compilers/llvm/15/lldb/default.nix
+++ b/pkgs/development/compilers/llvm/15/lldb/default.nix
@@ -26,6 +26,9 @@
 , lua5_3
 }:
 
+# TODO: we build the python bindings but don't expose them as a python package
+# TODO: expose the vscode extension?
+
 stdenv.mkDerivation (rec {
   pname = "lldb";
   inherit version;