.gitignore raw

   1  # Ignored files in bdwgc Git repo.
   2  
   3  # Binary files (in root dir, cord, tests):
   4  *.a
   5  *.dbg
   6  *.dll
   7  *.dylib
   8  *.elf
   9  *.exe
  10  *.gcda
  11  *.gch
  12  *.gcno
  13  *.la
  14  *.lib
  15  *.lo
  16  *.o
  17  *.obj
  18  lib*.so
  19  
  20  *.gc.log
  21  .dirstamp
  22  /*_bench.log
  23  /*_bench.trs
  24  /*_test
  25  /*test.log
  26  /*test.trs
  27  /.libs/
  28  /Makefile
  29  /add_gc_prefix
  30  /atomicops
  31  /atomicopstest
  32  /base_lib
  33  /bdw-gc.pc
  34  /c++
  35  /config.cache
  36  /config.log
  37  /config.status
  38  /cord/cordtest
  39  /cord/de
  40  /cord/de_win.rbj
  41  /cord/de_win.res
  42  /cord/tests/de_win.rbj
  43  /cord/tests/de_win.res
  44  /cords
  45  /cordtest
  46  /core
  47  /cpptest
  48  /de
  49  /de.dir/
  50  /disclaim_bench
  51  /disclaimtest
  52  /dont_ar_1
  53  /dont_ar_2
  54  /dont_ar_3
  55  /dont_ar_4
  56  /gc-*
  57  /gc.log
  58  /gcname
  59  /gctest
  60  /gctest_dyn_link
  61  /gctest_irix_dyn_link
  62  /hugetest
  63  /if_mach
  64  /if_not_there
  65  /initfromthreadtest
  66  /leaktest
  67  /libtool
  68  /middletest
  69  /realloctest
  70  /smashtest
  71  /staticrootstest
  72  /subthreadcreatetest
  73  /sunos5gc.so
  74  /test-suite.log
  75  /test_atomic_ops
  76  /test_atomic_ops.log
  77  /test_atomic_ops.trs
  78  /test_cpp
  79  /test_cpp.cpp
  80  /test_cpp.log
  81  /test_cpp.trs
  82  /test_tree.cpp
  83  /threadkeytest
  84  /threadleaktest
  85  /threadlibs
  86  /tracetest
  87  /treetest
  88  /weakmaptest
  89  
  90  /build/
  91  /out/
  92  
  93  # Config, dependency and stamp files generated by configure:
  94  .deps/
  95  /include/config.h
  96  config.h.in~
  97  stamp-h1
  98  
  99  # External library (without trailing slash to allow symlinks):
 100  /libatomic_ops*
 101  /pthreads-w32*
 102  
 103  # These files are generated by autoreconf:
 104  /Makefile.in
 105  /aclocal.m4
 106  /autom4te.cache/
 107  /compile
 108  /config.guess
 109  /config.sub
 110  /configure
 111  /configure~
 112  /depcomp
 113  /include/config.h.in
 114  /install-sh
 115  /ltmain.sh
 116  /m4/libtool.m4
 117  /m4/ltoptions.m4
 118  /m4/ltsugar.m4
 119  /m4/ltversion.m4
 120  /m4/lt~obsolete.m4
 121  /missing
 122  /mkinstalldirs
 123  /test-driver
 124  
 125  # These files are generated by CMake:
 126  *.tlog
 127  /*.vcxproj
 128  /*.vcxproj.filters
 129  /CMakeCache.txt
 130  /CMakeFiles/
 131  /DartConfiguration.tcl
 132  /Testing/Temporary/
 133  /cord/CMakeFiles/
 134  /cord/Makefile
 135  /gc.sln
 136  /tests/*.vcxproj
 137  /tests/*.vcxproj.filters
 138  /tests/*test
 139  /tests/CMakeFiles/
 140  /tests/Makefile
 141  /tests/test_cpp
 142  CTestTestfile.cmake
 143  cmake_install.cmake
 144  
 145  # These ones are generated by Zig:
 146  /.zig-cache/
 147  /zig-out/
 148  
 149  # Rarely generated files (mostly by some Win/DOS compilers):
 150  /*.copied.c
 151  /*.csm
 152  /*.err
 153  /*.i
 154  /*.lb1
 155  /*.lnk
 156  /*.map
 157  /*.out
 158  /*.rbj
 159  /*.res
 160  /*.stackdump
 161  /*.sym
 162  /*.tmp
 163  *.bsc
 164  *.dll.manifest
 165  *.exp
 166  *.idb
 167  *.ilk
 168  *.pdb
 169  *.sbr
 170  *.tds
 171  gc.def
 172  
 173  # Stuff from VS build system and IDE
 174  *.vcproj.*.user
 175  .vs/
 176  
 177  # Code analysis tools:
 178  *.c.gcov
 179  *.cc.gcov
 180  *.h.gcov
 181  *.sancov
 182  /.sv*-dir
 183  /cov-int
 184  /coverage.info
 185  /pvs-project.log
 186  /pvs-project.tasks
 187  /strace_out
 188