Fossil SCM

Take over latest change in src/mem1.c (usage of _msize function) from SQLite trunk, and modify MinGW build to use it as well.

jan.nijtmans 2013-11-13 11:28 trunk
Commit bcd979daef9255961b053e775297d15713549408
--- src/makemake.tcl
+++ src/makemake.tcl
@@ -772,10 +772,12 @@
772772
773773
774774
writeln "\$(OBJDIR)/sqlite3.o:\t\$(SRCDIR)/sqlite3.c"
775775
set opt $SQLITE_OPTIONS
776776
append opt " -D_HAVE_SQLITE_CONFIG_H"
777
+append opt " -DSQLITE_USE_MALLOC_H"
778
+append opt " -DSQLITE_USE_MSIZE"
777779
writeln "\t\$(XTCC) $opt -c \$(SRCDIR)/sqlite3.c -o \$(OBJDIR)/sqlite3.o\n"
778780
779781
set opt {}
780782
writeln "\$(OBJDIR)/cson_amalgamation.o:\t\$(SRCDIR)/cson_amalgamation.c"
781783
writeln "\t\$(XTCC) $opt -c \$(SRCDIR)/cson_amalgamation.c -o \$(OBJDIR)/cson_amalgamation.o\n"
782784
--- src/makemake.tcl
+++ src/makemake.tcl
@@ -772,10 +772,12 @@
772
773
774 writeln "\$(OBJDIR)/sqlite3.o:\t\$(SRCDIR)/sqlite3.c"
775 set opt $SQLITE_OPTIONS
776 append opt " -D_HAVE_SQLITE_CONFIG_H"
 
 
777 writeln "\t\$(XTCC) $opt -c \$(SRCDIR)/sqlite3.c -o \$(OBJDIR)/sqlite3.o\n"
778
779 set opt {}
780 writeln "\$(OBJDIR)/cson_amalgamation.o:\t\$(SRCDIR)/cson_amalgamation.c"
781 writeln "\t\$(XTCC) $opt -c \$(SRCDIR)/cson_amalgamation.c -o \$(OBJDIR)/cson_amalgamation.o\n"
782
--- src/makemake.tcl
+++ src/makemake.tcl
@@ -772,10 +772,12 @@
772
773
774 writeln "\$(OBJDIR)/sqlite3.o:\t\$(SRCDIR)/sqlite3.c"
775 set opt $SQLITE_OPTIONS
776 append opt " -D_HAVE_SQLITE_CONFIG_H"
777 append opt " -DSQLITE_USE_MALLOC_H"
778 append opt " -DSQLITE_USE_MSIZE"
779 writeln "\t\$(XTCC) $opt -c \$(SRCDIR)/sqlite3.c -o \$(OBJDIR)/sqlite3.o\n"
780
781 set opt {}
782 writeln "\$(OBJDIR)/cson_amalgamation.o:\t\$(SRCDIR)/cson_amalgamation.c"
783 writeln "\t\$(XTCC) $opt -c \$(SRCDIR)/cson_amalgamation.c -o \$(OBJDIR)/cson_amalgamation.o\n"
784
+41 -25
--- src/sqlite3.c
+++ src/sqlite3.c
@@ -15796,20 +15796,10 @@
1579615796
** This version of the memory allocator is the default. It is
1579715797
** used when no other memory allocator is specified using compile-time
1579815798
** macros.
1579915799
*/
1580015800
#ifdef SQLITE_SYSTEM_MALLOC
15801
-
15802
-/*
15803
-** The MSVCRT has malloc_usable_size() but it is called _msize().
15804
-** The use of _msize() is automatic, but can be disabled by compiling
15805
-** with -DSQLITE_WITHOUT_MSIZE
15806
-*/
15807
-#if defined(_MSC_VER) && !defined(SQLITE_WITHOUT_MSIZE)
15808
-# define SQLITE_MALLOCSIZE _msize
15809
-#endif
15810
-
1581115801
#if defined(__APPLE__) && !defined(SQLITE_WITHOUT_ZONEMALLOC)
1581215802
1581315803
/*
1581415804
** Use the zone allocator available on apple products unless the
1581515805
** SQLITE_WITHOUT_ZONEMALLOC symbol is defined.
@@ -15828,25 +15818,51 @@
1582815818
1582915819
/*
1583015820
** Use standard C library malloc and free on non-Apple systems.
1583115821
** Also used by Apple systems if SQLITE_WITHOUT_ZONEMALLOC is defined.
1583215822
*/
15833
-#define SQLITE_MALLOC(x) malloc(x)
15834
-#define SQLITE_FREE(x) free(x)
15835
-#define SQLITE_REALLOC(x,y) realloc((x),(y))
15836
-
15837
-#if (defined(_MSC_VER) && !defined(SQLITE_WITHOUT_MSIZE)) \
15838
- || (defined(HAVE_MALLOC_H) && defined(HAVE_MALLOC_USABLE_SIZE))
15839
-# include <malloc.h> /* Needed for malloc_usable_size on linux */
15840
-#endif
15841
-#ifdef HAVE_MALLOC_USABLE_SIZE
15842
-# ifndef SQLITE_MALLOCSIZE
15843
-# define SQLITE_MALLOCSIZE(x) malloc_usable_size(x)
15844
-# endif
15845
-#else
15846
-# undef SQLITE_MALLOCSIZE
15847
-#endif
15823
+#define SQLITE_MALLOC(x) malloc(x)
15824
+#define SQLITE_FREE(x) free(x)
15825
+#define SQLITE_REALLOC(x,y) realloc((x),(y))
15826
+
15827
+/*
15828
+** The malloc.h header file is needed for malloc_usable_size() function
15829
+** on some systems (e.g. Linux).
15830
+*/
15831
+#if defined(HAVE_MALLOC_H) && defined(HAVE_MALLOC_USABLE_SIZE)
15832
+# define SQLITE_USE_MALLOC_H
15833
+# define SQLITE_USE_MALLOC_USABLE_SIZE
15834
+/*
15835
+** The MSVCRT has malloc_usable_size(), but it is called _msize(). The
15836
+** use of _msize() is automatic, but can be disabled by compiling with
15837
+** -DSQLITE_WITHOUT_MSIZE. Using the _msize() function also requires
15838
+** the malloc.h header file.
15839
+*/
15840
+#elif defined(_MSC_VER) && !defined(SQLITE_WITHOUT_MSIZE)
15841
+# define SQLITE_USE_MALLOC_H
15842
+# define SQLITE_USE_MSIZE
15843
+#endif
15844
+
15845
+/*
15846
+** Include the malloc.h header file, if necessary. Also set define macro
15847
+** SQLITE_MALLOCSIZE to the appropriate function name, which is _msize()
15848
+** for MSVC and malloc_usable_size() for most other systems (e.g. Linux).
15849
+** The memory size function can always be overridden manually by defining
15850
+** the macro SQLITE_MALLOCSIZE to the desired function name.
15851
+*/
15852
+#if defined(SQLITE_USE_MALLOC_H)
15853
+# include <malloc.h>
15854
+# if defined(SQLITE_USE_MALLOC_USABLE_SIZE)
15855
+# if !defined(SQLITE_MALLOCSIZE)
15856
+# define SQLITE_MALLOCSIZE(x) malloc_usable_size(x)
15857
+# endif
15858
+# elif defined(SQLITE_USE_MSIZE)
15859
+# if !defined(SQLITE_MALLOCSIZE)
15860
+# define SQLITE_MALLOCSIZE _msize
15861
+# endif
15862
+# endif
15863
+#endif /* defined(SQLITE_USE_MALLOC_H) */
1584815864
1584915865
#endif /* __APPLE__ or not __APPLE__ */
1585015866
1585115867
/*
1585215868
** Like malloc(), but remember the size of the allocation
1585315869
--- src/sqlite3.c
+++ src/sqlite3.c
@@ -15796,20 +15796,10 @@
15796 ** This version of the memory allocator is the default. It is
15797 ** used when no other memory allocator is specified using compile-time
15798 ** macros.
15799 */
15800 #ifdef SQLITE_SYSTEM_MALLOC
15801
15802 /*
15803 ** The MSVCRT has malloc_usable_size() but it is called _msize().
15804 ** The use of _msize() is automatic, but can be disabled by compiling
15805 ** with -DSQLITE_WITHOUT_MSIZE
15806 */
15807 #if defined(_MSC_VER) && !defined(SQLITE_WITHOUT_MSIZE)
15808 # define SQLITE_MALLOCSIZE _msize
15809 #endif
15810
15811 #if defined(__APPLE__) && !defined(SQLITE_WITHOUT_ZONEMALLOC)
15812
15813 /*
15814 ** Use the zone allocator available on apple products unless the
15815 ** SQLITE_WITHOUT_ZONEMALLOC symbol is defined.
@@ -15828,25 +15818,51 @@
15828
15829 /*
15830 ** Use standard C library malloc and free on non-Apple systems.
15831 ** Also used by Apple systems if SQLITE_WITHOUT_ZONEMALLOC is defined.
15832 */
15833 #define SQLITE_MALLOC(x) malloc(x)
15834 #define SQLITE_FREE(x) free(x)
15835 #define SQLITE_REALLOC(x,y) realloc((x),(y))
15836
15837 #if (defined(_MSC_VER) && !defined(SQLITE_WITHOUT_MSIZE)) \
15838 || (defined(HAVE_MALLOC_H) && defined(HAVE_MALLOC_USABLE_SIZE))
15839 # include <malloc.h> /* Needed for malloc_usable_size on linux */
15840 #endif
15841 #ifdef HAVE_MALLOC_USABLE_SIZE
15842 # ifndef SQLITE_MALLOCSIZE
15843 # define SQLITE_MALLOCSIZE(x) malloc_usable_size(x)
15844 # endif
15845 #else
15846 # undef SQLITE_MALLOCSIZE
15847 #endif
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15848
15849 #endif /* __APPLE__ or not __APPLE__ */
15850
15851 /*
15852 ** Like malloc(), but remember the size of the allocation
15853
--- src/sqlite3.c
+++ src/sqlite3.c
@@ -15796,20 +15796,10 @@
15796 ** This version of the memory allocator is the default. It is
15797 ** used when no other memory allocator is specified using compile-time
15798 ** macros.
15799 */
15800 #ifdef SQLITE_SYSTEM_MALLOC
 
 
 
 
 
 
 
 
 
 
15801 #if defined(__APPLE__) && !defined(SQLITE_WITHOUT_ZONEMALLOC)
15802
15803 /*
15804 ** Use the zone allocator available on apple products unless the
15805 ** SQLITE_WITHOUT_ZONEMALLOC symbol is defined.
@@ -15828,25 +15818,51 @@
15818
15819 /*
15820 ** Use standard C library malloc and free on non-Apple systems.
15821 ** Also used by Apple systems if SQLITE_WITHOUT_ZONEMALLOC is defined.
15822 */
15823 #define SQLITE_MALLOC(x) malloc(x)
15824 #define SQLITE_FREE(x) free(x)
15825 #define SQLITE_REALLOC(x,y) realloc((x),(y))
15826
15827 /*
15828 ** The malloc.h header file is needed for malloc_usable_size() function
15829 ** on some systems (e.g. Linux).
15830 */
15831 #if defined(HAVE_MALLOC_H) && defined(HAVE_MALLOC_USABLE_SIZE)
15832 # define SQLITE_USE_MALLOC_H
15833 # define SQLITE_USE_MALLOC_USABLE_SIZE
15834 /*
15835 ** The MSVCRT has malloc_usable_size(), but it is called _msize(). The
15836 ** use of _msize() is automatic, but can be disabled by compiling with
15837 ** -DSQLITE_WITHOUT_MSIZE. Using the _msize() function also requires
15838 ** the malloc.h header file.
15839 */
15840 #elif defined(_MSC_VER) && !defined(SQLITE_WITHOUT_MSIZE)
15841 # define SQLITE_USE_MALLOC_H
15842 # define SQLITE_USE_MSIZE
15843 #endif
15844
15845 /*
15846 ** Include the malloc.h header file, if necessary. Also set define macro
15847 ** SQLITE_MALLOCSIZE to the appropriate function name, which is _msize()
15848 ** for MSVC and malloc_usable_size() for most other systems (e.g. Linux).
15849 ** The memory size function can always be overridden manually by defining
15850 ** the macro SQLITE_MALLOCSIZE to the desired function name.
15851 */
15852 #if defined(SQLITE_USE_MALLOC_H)
15853 # include <malloc.h>
15854 # if defined(SQLITE_USE_MALLOC_USABLE_SIZE)
15855 # if !defined(SQLITE_MALLOCSIZE)
15856 # define SQLITE_MALLOCSIZE(x) malloc_usable_size(x)
15857 # endif
15858 # elif defined(SQLITE_USE_MSIZE)
15859 # if !defined(SQLITE_MALLOCSIZE)
15860 # define SQLITE_MALLOCSIZE _msize
15861 # endif
15862 # endif
15863 #endif /* defined(SQLITE_USE_MALLOC_H) */
15864
15865 #endif /* __APPLE__ or not __APPLE__ */
15866
15867 /*
15868 ** Like malloc(), but remember the size of the allocation
15869
--- win/Makefile.mingw
+++ win/Makefile.mingw
@@ -1685,11 +1685,11 @@
16851685
$(XTCC) -o $(OBJDIR)/zip.o -c $(OBJDIR)/zip_.c
16861686
16871687
$(OBJDIR)/zip.h: $(OBJDIR)/headers
16881688
16891689
$(OBJDIR)/sqlite3.o: $(SRCDIR)/sqlite3.c
1690
- $(XTCC) -DSQLITE_OMIT_LOAD_EXTENSION=1 -DSQLITE_THREADSAFE=0 -DSQLITE_DEFAULT_FILE_FORMAT=4 -DSQLITE_ENABLE_STAT3 -Dlocaltime=fossil_localtime -DSQLITE_ENABLE_LOCKING_STYLE=0 -DSQLITE_WIN32_NO_ANSI -D_HAVE_SQLITE_CONFIG_H -c $(SRCDIR)/sqlite3.c -o $(OBJDIR)/sqlite3.o
1690
+ $(XTCC) -DSQLITE_OMIT_LOAD_EXTENSION=1 -DSQLITE_THREADSAFE=0 -DSQLITE_DEFAULT_FILE_FORMAT=4 -DSQLITE_ENABLE_STAT3 -Dlocaltime=fossil_localtime -DSQLITE_ENABLE_LOCKING_STYLE=0 -DSQLITE_WIN32_NO_ANSI -D_HAVE_SQLITE_CONFIG_H -DSQLITE_USE_MALLOC_H -DSQLITE_USE_MSIZE -c $(SRCDIR)/sqlite3.c -o $(OBJDIR)/sqlite3.o
16911691
16921692
$(OBJDIR)/cson_amalgamation.o: $(SRCDIR)/cson_amalgamation.c
16931693
$(XTCC) -c $(SRCDIR)/cson_amalgamation.c -o $(OBJDIR)/cson_amalgamation.o
16941694
16951695
$(OBJDIR)/json.o $(OBJDIR)/json_artifact.o $(OBJDIR)/json_branch.o $(OBJDIR)/json_config.o $(OBJDIR)/json_diff.o $(OBJDIR)/json_dir.o $(OBJDIR)/jsos_finfo.o $(OBJDIR)/json_login.o $(OBJDIR)/json_query.o $(OBJDIR)/json_report.o $(OBJDIR)/json_status.o $(OBJDIR)/json_tag.o $(OBJDIR)/json_timeline.o $(OBJDIR)/json_user.o $(OBJDIR)/json_wiki.o : $(SRCDIR)/json_detail.h
16961696
--- win/Makefile.mingw
+++ win/Makefile.mingw
@@ -1685,11 +1685,11 @@
1685 $(XTCC) -o $(OBJDIR)/zip.o -c $(OBJDIR)/zip_.c
1686
1687 $(OBJDIR)/zip.h: $(OBJDIR)/headers
1688
1689 $(OBJDIR)/sqlite3.o: $(SRCDIR)/sqlite3.c
1690 $(XTCC) -DSQLITE_OMIT_LOAD_EXTENSION=1 -DSQLITE_THREADSAFE=0 -DSQLITE_DEFAULT_FILE_FORMAT=4 -DSQLITE_ENABLE_STAT3 -Dlocaltime=fossil_localtime -DSQLITE_ENABLE_LOCKING_STYLE=0 -DSQLITE_WIN32_NO_ANSI -D_HAVE_SQLITE_CONFIG_H -c $(SRCDIR)/sqlite3.c -o $(OBJDIR)/sqlite3.o
1691
1692 $(OBJDIR)/cson_amalgamation.o: $(SRCDIR)/cson_amalgamation.c
1693 $(XTCC) -c $(SRCDIR)/cson_amalgamation.c -o $(OBJDIR)/cson_amalgamation.o
1694
1695 $(OBJDIR)/json.o $(OBJDIR)/json_artifact.o $(OBJDIR)/json_branch.o $(OBJDIR)/json_config.o $(OBJDIR)/json_diff.o $(OBJDIR)/json_dir.o $(OBJDIR)/jsos_finfo.o $(OBJDIR)/json_login.o $(OBJDIR)/json_query.o $(OBJDIR)/json_report.o $(OBJDIR)/json_status.o $(OBJDIR)/json_tag.o $(OBJDIR)/json_timeline.o $(OBJDIR)/json_user.o $(OBJDIR)/json_wiki.o : $(SRCDIR)/json_detail.h
1696
--- win/Makefile.mingw
+++ win/Makefile.mingw
@@ -1685,11 +1685,11 @@
1685 $(XTCC) -o $(OBJDIR)/zip.o -c $(OBJDIR)/zip_.c
1686
1687 $(OBJDIR)/zip.h: $(OBJDIR)/headers
1688
1689 $(OBJDIR)/sqlite3.o: $(SRCDIR)/sqlite3.c
1690 $(XTCC) -DSQLITE_OMIT_LOAD_EXTENSION=1 -DSQLITE_THREADSAFE=0 -DSQLITE_DEFAULT_FILE_FORMAT=4 -DSQLITE_ENABLE_STAT3 -Dlocaltime=fossil_localtime -DSQLITE_ENABLE_LOCKING_STYLE=0 -DSQLITE_WIN32_NO_ANSI -D_HAVE_SQLITE_CONFIG_H -DSQLITE_USE_MALLOC_H -DSQLITE_USE_MSIZE -c $(SRCDIR)/sqlite3.c -o $(OBJDIR)/sqlite3.o
1691
1692 $(OBJDIR)/cson_amalgamation.o: $(SRCDIR)/cson_amalgamation.c
1693 $(XTCC) -c $(SRCDIR)/cson_amalgamation.c -o $(OBJDIR)/cson_amalgamation.o
1694
1695 $(OBJDIR)/json.o $(OBJDIR)/json_artifact.o $(OBJDIR)/json_branch.o $(OBJDIR)/json_config.o $(OBJDIR)/json_diff.o $(OBJDIR)/json_dir.o $(OBJDIR)/jsos_finfo.o $(OBJDIR)/json_login.o $(OBJDIR)/json_query.o $(OBJDIR)/json_report.o $(OBJDIR)/json_status.o $(OBJDIR)/json_tag.o $(OBJDIR)/json_timeline.o $(OBJDIR)/json_user.o $(OBJDIR)/json_wiki.o : $(SRCDIR)/json_detail.h
1696
--- win/Makefile.mingw.mistachkin
+++ win/Makefile.mingw.mistachkin
@@ -1685,11 +1685,11 @@
16851685
$(XTCC) -o $(OBJDIR)/zip.o -c $(OBJDIR)/zip_.c
16861686
16871687
$(OBJDIR)/zip.h: $(OBJDIR)/headers
16881688
16891689
$(OBJDIR)/sqlite3.o: $(SRCDIR)/sqlite3.c
1690
- $(XTCC) -DSQLITE_OMIT_LOAD_EXTENSION=1 -DSQLITE_THREADSAFE=0 -DSQLITE_DEFAULT_FILE_FORMAT=4 -DSQLITE_ENABLE_STAT3 -Dlocaltime=fossil_localtime -DSQLITE_ENABLE_LOCKING_STYLE=0 -DSQLITE_WIN32_NO_ANSI -D_HAVE_SQLITE_CONFIG_H -c $(SRCDIR)/sqlite3.c -o $(OBJDIR)/sqlite3.o
1690
+ $(XTCC) -DSQLITE_OMIT_LOAD_EXTENSION=1 -DSQLITE_THREADSAFE=0 -DSQLITE_DEFAULT_FILE_FORMAT=4 -DSQLITE_ENABLE_STAT3 -Dlocaltime=fossil_localtime -DSQLITE_ENABLE_LOCKING_STYLE=0 -DSQLITE_WIN32_NO_ANSI -D_HAVE_SQLITE_CONFIG_H -DSQLITE_USE_MALLOC_H -DSQLITE_USE_MSIZE -c $(SRCDIR)/sqlite3.c -o $(OBJDIR)/sqlite3.o
16911691
16921692
$(OBJDIR)/cson_amalgamation.o: $(SRCDIR)/cson_amalgamation.c
16931693
$(XTCC) -c $(SRCDIR)/cson_amalgamation.c -o $(OBJDIR)/cson_amalgamation.o
16941694
16951695
$(OBJDIR)/json.o $(OBJDIR)/json_artifact.o $(OBJDIR)/json_branch.o $(OBJDIR)/json_config.o $(OBJDIR)/json_diff.o $(OBJDIR)/json_dir.o $(OBJDIR)/jsos_finfo.o $(OBJDIR)/json_login.o $(OBJDIR)/json_query.o $(OBJDIR)/json_report.o $(OBJDIR)/json_status.o $(OBJDIR)/json_tag.o $(OBJDIR)/json_timeline.o $(OBJDIR)/json_user.o $(OBJDIR)/json_wiki.o : $(SRCDIR)/json_detail.h
16961696
--- win/Makefile.mingw.mistachkin
+++ win/Makefile.mingw.mistachkin
@@ -1685,11 +1685,11 @@
1685 $(XTCC) -o $(OBJDIR)/zip.o -c $(OBJDIR)/zip_.c
1686
1687 $(OBJDIR)/zip.h: $(OBJDIR)/headers
1688
1689 $(OBJDIR)/sqlite3.o: $(SRCDIR)/sqlite3.c
1690 $(XTCC) -DSQLITE_OMIT_LOAD_EXTENSION=1 -DSQLITE_THREADSAFE=0 -DSQLITE_DEFAULT_FILE_FORMAT=4 -DSQLITE_ENABLE_STAT3 -Dlocaltime=fossil_localtime -DSQLITE_ENABLE_LOCKING_STYLE=0 -DSQLITE_WIN32_NO_ANSI -D_HAVE_SQLITE_CONFIG_H -c $(SRCDIR)/sqlite3.c -o $(OBJDIR)/sqlite3.o
1691
1692 $(OBJDIR)/cson_amalgamation.o: $(SRCDIR)/cson_amalgamation.c
1693 $(XTCC) -c $(SRCDIR)/cson_amalgamation.c -o $(OBJDIR)/cson_amalgamation.o
1694
1695 $(OBJDIR)/json.o $(OBJDIR)/json_artifact.o $(OBJDIR)/json_branch.o $(OBJDIR)/json_config.o $(OBJDIR)/json_diff.o $(OBJDIR)/json_dir.o $(OBJDIR)/jsos_finfo.o $(OBJDIR)/json_login.o $(OBJDIR)/json_query.o $(OBJDIR)/json_report.o $(OBJDIR)/json_status.o $(OBJDIR)/json_tag.o $(OBJDIR)/json_timeline.o $(OBJDIR)/json_user.o $(OBJDIR)/json_wiki.o : $(SRCDIR)/json_detail.h
1696
--- win/Makefile.mingw.mistachkin
+++ win/Makefile.mingw.mistachkin
@@ -1685,11 +1685,11 @@
1685 $(XTCC) -o $(OBJDIR)/zip.o -c $(OBJDIR)/zip_.c
1686
1687 $(OBJDIR)/zip.h: $(OBJDIR)/headers
1688
1689 $(OBJDIR)/sqlite3.o: $(SRCDIR)/sqlite3.c
1690 $(XTCC) -DSQLITE_OMIT_LOAD_EXTENSION=1 -DSQLITE_THREADSAFE=0 -DSQLITE_DEFAULT_FILE_FORMAT=4 -DSQLITE_ENABLE_STAT3 -Dlocaltime=fossil_localtime -DSQLITE_ENABLE_LOCKING_STYLE=0 -DSQLITE_WIN32_NO_ANSI -D_HAVE_SQLITE_CONFIG_H -DSQLITE_USE_MALLOC_H -DSQLITE_USE_MSIZE -c $(SRCDIR)/sqlite3.c -o $(OBJDIR)/sqlite3.o
1691
1692 $(OBJDIR)/cson_amalgamation.o: $(SRCDIR)/cson_amalgamation.c
1693 $(XTCC) -c $(SRCDIR)/cson_amalgamation.c -o $(OBJDIR)/cson_amalgamation.o
1694
1695 $(OBJDIR)/json.o $(OBJDIR)/json_artifact.o $(OBJDIR)/json_branch.o $(OBJDIR)/json_config.o $(OBJDIR)/json_diff.o $(OBJDIR)/json_dir.o $(OBJDIR)/jsos_finfo.o $(OBJDIR)/json_login.o $(OBJDIR)/json_query.o $(OBJDIR)/json_report.o $(OBJDIR)/json_status.o $(OBJDIR)/json_tag.o $(OBJDIR)/json_timeline.o $(OBJDIR)/json_user.o $(OBJDIR)/json_wiki.o : $(SRCDIR)/json_detail.h
1696

Keyboard Shortcuts

Open search /
Next entry (timeline) j
Previous entry (timeline) k
Open focused entry Enter
Show this help ?
Toggle theme Top nav button