fix for crash generating messages.txt, I wasn't getting this crash because I had 'WITH_PYTHON_SAFETY' enabled which was using different iterators (which dont crash), now there on by default.
made headless and no-python configurations work again and added --factory-startup to doc building command.
This commit is contained in:
@@ -44,9 +44,6 @@
|
||||
/* support for inter references, currently only needed for corner case */
|
||||
#define USE_PYRNA_STRUCT_REFERENCE
|
||||
|
||||
/* use real collection iterators rather than faking with a list */
|
||||
#define USE_PYRNA_ITER
|
||||
|
||||
#else /* WITH_PYTHON_SAFETY */
|
||||
|
||||
/* default, no defines! */
|
||||
@@ -67,6 +64,11 @@
|
||||
* so prefer the leak to the memory bloat for now. */
|
||||
// #define PYRNA_FREE_SUPPORT
|
||||
|
||||
/* use real collection iterators rather than faking with a list
|
||||
* this is needed so enums can be iterated over without crashing,
|
||||
* since finishing the iteration frees temp allocated enums */
|
||||
#define USE_PYRNA_ITER
|
||||
|
||||
/* --- end bpy build options --- */
|
||||
|
||||
struct ID;
|
||||
|
||||
Reference in New Issue
Block a user