File tree Expand file tree Collapse file tree 4 files changed +10
-7
lines changed
Expand file tree Collapse file tree 4 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 11#
22# Component Makefile
33#
4- # (Uses default behaviour of compiling all source files in directory, adding 'include' to include path.)
5-
4+ COMPONENT_PRIV_INCLUDEDIRS =private_include
65CFLAGS = -std=gnu99 -g3 -fno-stack-protector -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -mlongcalls -nostdlib -Wpointer-arith -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wno-unused-parameter -Wno-sign-compare -Wno-old-style-declaration -MMD -c -DF_CPU=240000000L -DESP32 -DCORE_DEBUG_LEVEL=0 -DNDEBUG
76
Original file line number Diff line number Diff line change 1+ #ifndef __DUMMY_ASSERT_H
2+ #define __DUMMY_ASSERT_H
3+ #ifdef NDEBUG
4+ #define assert (x )
5+ #else
6+ #include_next <assert.h>
7+ #endif
8+ #endif
9+
File renamed without changes.
Original file line number Diff line number Diff line change @@ -13476,11 +13476,6 @@ SQLITE_PRIVATE void sqlite3HashClear(Hash*);
1347613476#include <assert.h>
1347713477#include <stddef.h>
1347813478
13479- #ifdef NDEBUG
13480- #undef assert
13481- #define assert(e)
13482- #endif
13483-
1348413479/*
1348513480** Use a macro to replace memcpy() if compiled with SQLITE_INLINE_MEMCPY.
1348613481** This allows better measurements of where memcpy() is used when running
You can’t perform that action at this time.
0 commit comments