diff --git a/.gitignore b/.gitignore index 323e656..d4fb4cf 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,3 @@ # Nix/NixOS things result result-* - -# Clangd cache -.cache/clangd diff --git a/compile_commands.json b/compile_commands.json deleted file mode 100644 index 457ae32..0000000 --- a/compile_commands.json +++ /dev/null @@ -1,27 +0,0 @@ -[ - { - "arguments": [ - "/nix/store/8nfqxz8d7ramdmc1h7yvnm45cghkknls-devkitARM/devkitARM/bin/arm-none-eabi-gcc", - "-g", - "-Wall", - "-O2", - "-mword-relocations", - "-ffunction-sections", - "-march=armv6k", - "-mtune=mpcore", - "-mfloat-abi=hard", - "-mtp=soft", - "-I/home/toast/Documents/Repos/3ds-helloWorld/include", - "-I/nix/store/8nfqxz8d7ramdmc1h7yvnm45cghkknls-devkitARM/libctru/include", - "-I/home/toast/Documents/Repos/3ds-helloWorld/build", - "-D__3DS__", - "-c", - "-o", - "main.o", - "/home/toast/Documents/Repos/3ds-helloWorld/source/main.c" - ], - "directory": "/home/toast/Documents/Repos/3ds-helloWorld/build", - "file": "/home/toast/Documents/Repos/3ds-helloWorld/source/main.c", - "output": "/home/toast/Documents/Repos/3ds-helloWorld/build/main.o" - } -] diff --git a/flake.nix b/flake.nix index 8a7617f..a8057dd 100644 --- a/flake.nix +++ b/flake.nix @@ -16,13 +16,6 @@ name = "3ds-devshell"; packages = with nixpkgs.legacyPackages.${system}; [ gnumake - clang-tools - ( - writeShellScriptBin "generateClangCompileCommands" '' - make clean - ${bear}/bin/bear -- make - '' - ) ]; shellHook = '' export DEVKITPRO=${devkitARM}