RoaringBitmap / CRoaring

Roaring bitmaps in C (and C++), with SIMD (AVX2, AVX-512 and NEON) optimizations: used by Apache Doris, ClickHouse, and StarRocks
http://roaringbitmap.org/
Other
1.54k stars 265 forks source link

gitignore tries to ignore src/roaring.c, etc #637

Closed Dr-Emann closed 2 months ago

Dr-Emann commented 2 months ago

Oh, the amalgamated file is $ROOT/roaring.c instead of src/roaring.c. The .gitignore file functions correctly in Git, but tools like fd and ripgrep somehow also ignore src/roaring.c. It will work if we explicitly specify them like this in .gitignore:

/amalgamation_demo.c
/amalgamation_demo.cpp
/roaring.c
/roaring.h
/roaring.hh

_Originally posted by @amosbird in https://github.com/RoaringBitmap/CRoaring/pull/179#discussion_r1654803111_