Skip to content

Commit a8da5db

Browse files
committed
Added rule to ignore shared library file in .gitignore.
Also clarified README.txt in _clib.
1 parent 8bd6f61 commit a8da5db

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -127,3 +127,8 @@ dmypy.json
127127

128128
# Pyre type checker
129129
.pyre/
130+
131+
# Shared libraries
132+
src/atomics/_clib/*.dll*
133+
src/atomics/_clib/*.dylib*
134+
src/atomics/_clib/*.so*

src/atomics/_clib/README.txt

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1-
This directory is meant to hold the patomic shared library (usually patomic.dll or libpatomic.so).
1+
This directory is meant to hold the patomic shared library (usually patomic.dll, libpatomic.dylib, libpatomic.so).
2+
This should automatically be built as a step in building a bdist_wheel or installing an sdist.
3+
On the off chance the build fails, the library can be built manually.
24
The patomic source code can be found at https://github.com/doodspav/patomic (potentially only on the devel branch).
35
Compilation with CMake should work painlessly (the code is ANSI compatible).

0 commit comments

Comments
 (0)