Skip to content

Commit 72ddc3b

Browse files
committed
fix release build
1 parent 7b61863 commit 72ddc3b

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

Sources/LinkPython/PythonSupport.m

+5
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@
3232
int PyRun_SimpleString(const char *);
3333
void Py_Finalize(void);
3434

35+
void Py_IncRef(void *);
36+
void Py_DecRef(void *);
37+
3538
int PythonInitialize(int argc, const char **argv, const char *custom_builtin_importer)
3639
{
3740
int ret = 0;
@@ -61,3 +64,5 @@ void PythonRunSimpleString(const char *string)
6164
{
6265
PyRun_SimpleString(string);
6366
}
67+
68+
ForceLink(Python, Py_IncRef(nil); Py_DecRef(nil))

Sources/LinkPython/include/PythonSupport.h

+10
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,16 @@
2424

2525
#import <Foundation/Foundation.h>
2626

27+
#define ForceLink(package, body) \
28+
@interface ForceLink##package : NSObject \
29+
@end \
30+
\
31+
@implementation ForceLink##package \
32+
- (void)foo { \
33+
body; \
34+
} \
35+
@end
36+
2737
NS_ASSUME_NONNULL_BEGIN
2838

2939
int PythonInitialize(int, const char **, const char *);

0 commit comments

Comments
 (0)