Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e886ea9

Browse files
committed
(puremodule.c): New module which exports the Purify and Quantify C API
to Python. Minimal documentation is included in comments at the top of the file, and in the Misc/PURIFY.README file. Note that this module must be statically linked since Pure doesn't provide shared stubs libraries. (Setup.in): Added commented template for pure module (syslogmodule.c): ins() function wasn't declared static.
1 parent bb779ec commit e886ea9

3 files changed

Lines changed: 1169 additions & 4 deletions

File tree

Modules/Setup.in

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,13 @@ signal signalmodule.c # signal(2)
101101

102102
#thread threadmodule.c
103103

104+
# Pure module. Cannot be linked dynamically.
105+
# -DWITH_QUANTIFY, -DWITH_PURIFY, or -DWITH_ALL_PURE
106+
#WHICH_PURE_PRODUCTS=-DWITH_ALL_PURE
107+
#PURE_INCLS=-I/usr/local/include
108+
#PURE_STUBLIBS=-L/usr/local/lib -lpurify_stubs -lquantify_stubs
109+
#pure puremodule.c $(WHICH_PURE_PRODUCTS) $(PURE_INCLS) $(PURE_STUBLIBS)
110+
104111
# Uncommenting the following line tells makesetup that all following
105112
# modules are to be built as shared libraries (see above for more
106113
# detail):

0 commit comments

Comments
 (0)