From 73a54c59ca6bdf8dda9f3218806e8195e670c597 Mon Sep 17 00:00:00 2001 From: penguin Date: Sun, 13 Dec 2020 12:46:03 -0600 Subject: [PATCH] . --- build/.gitignore | 5 ++-- build/compile_commands.json | 54 +++++++++++++++++++++++++++++++++++++ 2 files changed, 57 insertions(+), 2 deletions(-) create mode 100644 build/compile_commands.json diff --git a/build/.gitignore b/build/.gitignore index 8792ae1..7949f3c 100644 --- a/build/.gitignore +++ b/build/.gitignore @@ -1,5 +1,6 @@ -!gcc/* -* +*/* + +!gcc/*/ !.gitignore !system_same54.c !Makefile diff --git a/build/compile_commands.json b/build/compile_commands.json new file mode 100644 index 0000000..4389fe6 --- /dev/null +++ b/build/compile_commands.json @@ -0,0 +1,54 @@ +[ + { + "arguments": [ + "/usr/bin/arm-none-eabi-gcc", + "-x", + "c", + "-mthumb", + "-DDEBUG", + "-Os", + "-ffunction-sections", + "-mlong-calls", + "-g3", + "-Wall", + "-c", + "-std=gnu99", + "-D__SAME54P20A__", + "-mcpu=cortex-m4", + "-mfloat-abi=softfp", + "-mfpu=fpv4-sp-d16", + "-I../", + "-I../config", + "-I../examples", + "-I../hal/include", + "-I../hal/utils/include", + "-I../hpl/cmcc", + "-I../hpl/core", + "-I../hpl/dmac", + "-I../hpl/gclk", + "-I../hpl/mclk", + "-I../hpl/osc32kctrl", + "-I../hpl/oscctrl", + "-I../hpl/pm", + "-I../hpl/port", + "-I../hpl/ramecc", + "-I../hpl/sercom", + "-I../hpl/systick", + "-I../hri", + "-I../", + "-I../CMSIS/Core/Include", + "-I../include", + "-I../shared", + "-I../shared/drivers", + "-I../shared/devices", + "-I../shared/util", + "-MTshared/util/pdebug.o", + "-o", + "shared/util/pdebug.o", + "../shared/util/pdebug.c" + ], + "directory": "/storage/Shared/Documents/Projects/spi_sd_mmc_lib/build", + "file": "/storage/Shared/Documents/Projects/spi_sd_mmc_lib/build/../shared/util/pdebug.c", + "output": "/storage/Shared/Documents/Projects/spi_sd_mmc_lib/build/shared/util/pdebug.o" + } +]