Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2013-05-30 06:16:22 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-05-30 06:16:22 +0400
commit9fb3d3e0322cb6692f822ee374de1ec03ab70454 (patch)
tree8919dc1e5294f4898e7b4d623818eefbf1519cd7
parent9cf6e305a90581442d374860d3e4f278624d033c (diff)
remove redundant includes from cmake and scons.
-rw-r--r--source/blender/blenkernel/BKE_customdata.h2
-rw-r--r--source/blender/blenkernel/BKE_pbvh.h8
-rw-r--r--source/blender/blenkernel/intern/pbvh.c2
-rw-r--r--source/blender/blenlib/CMakeLists.txt1
-rw-r--r--source/blender/blenloader/CMakeLists.txt2
-rw-r--r--source/blender/blenloader/SConscript2
-rw-r--r--source/blender/editors/animation/SConscript2
-rw-r--r--source/blender/editors/armature/SConscript4
-rw-r--r--source/blender/editors/curve/SConscript5
-rw-r--r--source/blender/editors/curve/curve_ops.c1
-rw-r--r--source/blender/editors/interface/SConscript1
-rw-r--r--source/blender/editors/mesh/SConscript1
-rw-r--r--source/blender/editors/metaball/SConscript4
-rw-r--r--source/blender/editors/physics/SConscript4
-rw-r--r--source/blender/editors/screen/SConscript1
-rw-r--r--source/blender/editors/sculpt_paint/paint_cursor.c1
-rw-r--r--source/blender/editors/sculpt_paint/paint_hide.c2
-rw-r--r--source/blender/editors/sculpt_paint/paint_mask.c2
-rw-r--r--source/blender/editors/sculpt_paint/paint_ops.c1
-rw-r--r--source/blender/editors/sculpt_paint/sculpt.c1
-rw-r--r--source/blender/editors/space_action/SConscript1
-rw-r--r--source/blender/editors/space_api/CMakeLists.txt1
-rw-r--r--source/blender/editors/space_api/SConscript2
-rw-r--r--source/blender/editors/space_nla/SConscript1
-rw-r--r--source/blender/editors/space_script/CMakeLists.txt3
-rw-r--r--source/blender/editors/space_text/CMakeLists.txt3
-rw-r--r--source/blender/editors/space_time/SConscript1
-rw-r--r--source/blender/editors/transform/SConscript3
-rw-r--r--source/blender/editors/util/SConscript1
-rw-r--r--source/blender/editors/uvedit/SConscript1
-rw-r--r--source/blender/nodes/SConscript3
-rw-r--r--source/blender/render/CMakeLists.txt4
-rw-r--r--source/blender/render/SConscript2
-rw-r--r--source/blender/windowmanager/CMakeLists.txt3
-rw-r--r--source/blender/windowmanager/SConscript3
-rw-r--r--source/gameengine/Rasterizer/SConscript27
36 files changed, 26 insertions, 80 deletions
diff --git a/source/blender/blenkernel/BKE_customdata.h b/source/blender/blenkernel/BKE_customdata.h
index 0b6a3be7c84..72aae1b2361 100644
--- a/source/blender/blenkernel/BKE_customdata.h
+++ b/source/blender/blenkernel/BKE_customdata.h
@@ -38,7 +38,7 @@
extern "C" {
#endif
-#include "BLI_sys_types.h" /* XXX, should have a more generic include for this */
+#include "BLI_sys_types.h"
#include "BLI_utildefines.h"
struct BMesh;
diff --git a/source/blender/blenkernel/BKE_pbvh.h b/source/blender/blenkernel/BKE_pbvh.h
index 4c811d55dbe..48c16f8db38 100644
--- a/source/blender/blenkernel/BKE_pbvh.h
+++ b/source/blender/blenkernel/BKE_pbvh.h
@@ -30,9 +30,6 @@
#include "BLI_ghash.h"
#include "BLI_utildefines.h"
-/* Needed for BMesh functions used in the PBVH iterator macro */
-#include "bmesh.h"
-
struct CCGElem;
struct CCGKey;
struct CustomData;
@@ -43,6 +40,8 @@ struct MFace;
struct MVert;
struct PBVH;
struct PBVHNode;
+struct BMesh;
+struct BMLog;
typedef struct PBVH PBVH;
typedef struct PBVHNode PBVHNode;
@@ -123,7 +122,7 @@ unsigned int **BKE_pbvh_grid_hidden(const PBVH *bvh);
void BKE_pbvh_get_grid_key(const PBVH *pbvh, struct CCGKey *key);
/* Only valid for type == PBVH_BMESH */
-BMesh *BKE_pbvh_get_bmesh(PBVH *pbvh);
+struct BMesh *BKE_pbvh_get_bmesh(PBVH *pbvh);
void BKE_pbvh_bmesh_detail_size_set(PBVH *pbvh, float detail_size);
typedef enum {
@@ -329,4 +328,3 @@ void BKE_pbvh_gather_proxies(PBVH *pbvh, PBVHNode ***nodes, int *totnode);
void pbvh_show_diffuse_color_set(PBVH *bvh, int show_diffuse_color);
#endif /* __BKE_PBVH_H__ */
-
diff --git a/source/blender/blenkernel/intern/pbvh.c b/source/blender/blenkernel/intern/pbvh.c
index ead8d1f1b25..710a9b787a0 100644
--- a/source/blender/blenkernel/intern/pbvh.c
+++ b/source/blender/blenkernel/intern/pbvh.c
@@ -41,6 +41,8 @@
#include "GPU_buffers.h"
+#include "bmesh.h"
+
#include "pbvh_intern.h"
#define LEAF_LIMIT 10000
diff --git a/source/blender/blenlib/CMakeLists.txt b/source/blender/blenlib/CMakeLists.txt
index 7bf21b79899..1d94ca9afbc 100644
--- a/source/blender/blenlib/CMakeLists.txt
+++ b/source/blender/blenlib/CMakeLists.txt
@@ -29,7 +29,6 @@ set(INC
.
# ../blenkernel # dont add this back!
../makesdna
- ../makesrna
../../../intern/ghost
../../../intern/guardedalloc
../../../extern/wcwidth
diff --git a/source/blender/blenloader/CMakeLists.txt b/source/blender/blenloader/CMakeLists.txt
index 7d5c8c339f4..104c58b1c9e 100644
--- a/source/blender/blenloader/CMakeLists.txt
+++ b/source/blender/blenloader/CMakeLists.txt
@@ -28,12 +28,12 @@ set(INC
../blenfont
../blenkernel
../blenlib
+ ../imbuf
../makesdna
../makesrna
../nodes
../render/extern/include
../../../intern/guardedalloc
- ../imbuf
)
set(INC_SYS
diff --git a/source/blender/blenloader/SConscript b/source/blender/blenloader/SConscript
index 30cbc79a40d..3882cc1029a 100644
--- a/source/blender/blenloader/SConscript
+++ b/source/blender/blenloader/SConscript
@@ -35,8 +35,6 @@ incs = [
'../blenfont',
'../blenkernel',
'../blenlib',
- '../bmesh',
- '../editors/include',
'../imbuf',
'../makesdna',
'../makesrna',
diff --git a/source/blender/editors/animation/SConscript b/source/blender/editors/animation/SConscript
index 0f4fb71242b..91d480978c4 100644
--- a/source/blender/editors/animation/SConscript
+++ b/source/blender/editors/animation/SConscript
@@ -36,8 +36,6 @@ incs = [
'../../blenfont',
'../../blenkernel',
'../../blenlib',
- '../../bmesh',
- '../../imbuf',
'../../makesdna',
'../../makesrna',
'../../windowmanager',
diff --git a/source/blender/editors/armature/SConscript b/source/blender/editors/armature/SConscript
index 51345d94e60..b3c1ea2dbe9 100644
--- a/source/blender/editors/armature/SConscript
+++ b/source/blender/editors/armature/SConscript
@@ -37,12 +37,8 @@ incs = [
'../../blenfont',
'../../blenkernel',
'../../blenlib',
- '../../bmesh',
- '../../gpu',
- '../../imbuf',
'../../makesdna',
'../../makesrna',
- '../../render/extern/include',
'../../windowmanager',
]
incs = ' '.join(incs)
diff --git a/source/blender/editors/curve/SConscript b/source/blender/editors/curve/SConscript
index de395a6cd46..4760a212a8a 100644
--- a/source/blender/editors/curve/SConscript
+++ b/source/blender/editors/curve/SConscript
@@ -33,15 +33,10 @@ defs = []
incs = [
'#/intern/guardedalloc',
- '#/extern/glew/include',
- '#/intern/elbeem/extern',
'../include',
'../../blenfont',
'../../blenkernel',
'../../blenlib',
- '../../bmesh',
- '../../gpu',
- '../../imbuf',
'../../makesdna',
'../../makesrna',
'../../render/extern/include',
diff --git a/source/blender/editors/curve/curve_ops.c b/source/blender/editors/curve/curve_ops.c
index 406c26e901e..07dd2b82a06 100644
--- a/source/blender/editors/curve/curve_ops.c
+++ b/source/blender/editors/curve/curve_ops.c
@@ -269,4 +269,3 @@ void ED_keymap_curve(wmKeyConfig *keyconf)
ED_keymap_proportional_cycle(keyconf, keymap);
ED_keymap_proportional_editmode(keyconf, keymap, TRUE);
}
-
diff --git a/source/blender/editors/interface/SConscript b/source/blender/editors/interface/SConscript
index 0dc77ec5a3e..1936e17a7bb 100644
--- a/source/blender/editors/interface/SConscript
+++ b/source/blender/editors/interface/SConscript
@@ -36,7 +36,6 @@ incs = [
'../../blenfont',
'../../blenkernel',
'../../blenlib',
- '../../bmesh',
'../../gpu',
'../../imbuf',
'../../makesdna',
diff --git a/source/blender/editors/mesh/SConscript b/source/blender/editors/mesh/SConscript
index e7ed3aae7d1..6fa48c12eca 100644
--- a/source/blender/editors/mesh/SConscript
+++ b/source/blender/editors/mesh/SConscript
@@ -34,7 +34,6 @@ defs = []
incs = [
'#/intern/guardedalloc',
'#/extern/glew/include',
- '#/intern/elbeem/extern',
'../include',
'../uvedit',
'../../blenfont',
diff --git a/source/blender/editors/metaball/SConscript b/source/blender/editors/metaball/SConscript
index fb82cb032c8..d31a10afe90 100644
--- a/source/blender/editors/metaball/SConscript
+++ b/source/blender/editors/metaball/SConscript
@@ -31,13 +31,9 @@ sources = env.Glob('*.c')
incs = [
'#/intern/guardedalloc',
- '#/extern/glew/include',
- '#/intern/elbeem/extern',
'../include',
'../../blenkernel',
'../../blenlib',
- '../../gpu',
- '../../imbuf',
'../../makesdna',
'../../makesrna',
'../../render/extern/include',
diff --git a/source/blender/editors/physics/SConscript b/source/blender/editors/physics/SConscript
index 0fda34a86b1..9436280de43 100644
--- a/source/blender/editors/physics/SConscript
+++ b/source/blender/editors/physics/SConscript
@@ -38,12 +38,8 @@ incs = [
'../../blenfont',
'../../blenkernel',
'../../blenlib',
- '../../bmesh',
- '../../gpu',
- '../../imbuf',
'../../makesdna',
'../../makesrna',
- '../../render/extern/include',
'../../windowmanager',
]
incs = ' '.join(incs)
diff --git a/source/blender/editors/screen/SConscript b/source/blender/editors/screen/SConscript
index affa28863c9..28a6cbb02e6 100644
--- a/source/blender/editors/screen/SConscript
+++ b/source/blender/editors/screen/SConscript
@@ -41,7 +41,6 @@ incs = [
'../../imbuf',
'../../makesdna',
'../../makesrna',
- '../../render/extern/include',
'../../windowmanager',
]
incs = ' '.join(incs)
diff --git a/source/blender/editors/sculpt_paint/paint_cursor.c b/source/blender/editors/sculpt_paint/paint_cursor.c
index 79b8cd5e695..639f2e8d506 100644
--- a/source/blender/editors/sculpt_paint/paint_cursor.c
+++ b/source/blender/editors/sculpt_paint/paint_cursor.c
@@ -35,6 +35,7 @@
#include "BLI_utildefines.h"
#include "DNA_brush_types.h"
+#include "DNA_customdata_types.h"
#include "DNA_color_types.h"
#include "DNA_object_types.h"
#include "DNA_scene_types.h"
diff --git a/source/blender/editors/sculpt_paint/paint_hide.c b/source/blender/editors/sculpt_paint/paint_hide.c
index 14eb358f20f..e0d578ec210 100644
--- a/source/blender/editors/sculpt_paint/paint_hide.c
+++ b/source/blender/editors/sculpt_paint/paint_hide.c
@@ -64,6 +64,8 @@
#include "RNA_access.h"
#include "RNA_define.h"
+#include "bmesh.h"
+
#include "paint_intern.h"
#include "sculpt_intern.h" /* for undo push */
diff --git a/source/blender/editors/sculpt_paint/paint_mask.c b/source/blender/editors/sculpt_paint/paint_mask.c
index d42a7778a58..8767b080355 100644
--- a/source/blender/editors/sculpt_paint/paint_mask.c
+++ b/source/blender/editors/sculpt_paint/paint_mask.c
@@ -54,6 +54,8 @@
#include "ED_screen.h"
#include "ED_sculpt.h"
+#include "bmesh.h"
+
#include "paint_intern.h"
#include "sculpt_intern.h" /* for undo push */
diff --git a/source/blender/editors/sculpt_paint/paint_ops.c b/source/blender/editors/sculpt_paint/paint_ops.c
index badd49cb8fb..df1978c49f6 100644
--- a/source/blender/editors/sculpt_paint/paint_ops.c
+++ b/source/blender/editors/sculpt_paint/paint_ops.c
@@ -30,6 +30,7 @@
#include "BLI_utildefines.h"
#include "BLI_math_vector.h"
+#include "DNA_customdata_types.h"
#include "DNA_object_types.h"
#include "DNA_scene_types.h"
#include "DNA_brush_types.h"
diff --git a/source/blender/editors/sculpt_paint/sculpt.c b/source/blender/editors/sculpt_paint/sculpt.c
index 053ace4e59d..5647a8562c7 100644
--- a/source/blender/editors/sculpt_paint/sculpt.c
+++ b/source/blender/editors/sculpt_paint/sculpt.c
@@ -44,6 +44,7 @@
#include "BLF_translation.h"
+#include "DNA_customdata_types.h"
#include "DNA_mesh_types.h"
#include "DNA_meshdata_types.h"
#include "DNA_node_types.h"
diff --git a/source/blender/editors/space_action/SConscript b/source/blender/editors/space_action/SConscript
index 0421c4cc3ee..2776bd2989a 100644
--- a/source/blender/editors/space_action/SConscript
+++ b/source/blender/editors/space_action/SConscript
@@ -35,7 +35,6 @@ incs = [
'../include',
'../../blenkernel',
'../../blenlib',
- '../../imbuf',
'../../makesdna',
'../../makesrna',
'../../windowmanager',
diff --git a/source/blender/editors/space_api/CMakeLists.txt b/source/blender/editors/space_api/CMakeLists.txt
index 3932924a521..bf3257389ce 100644
--- a/source/blender/editors/space_api/CMakeLists.txt
+++ b/source/blender/editors/space_api/CMakeLists.txt
@@ -23,7 +23,6 @@ set(INC
../io
../../blenkernel
../../blenlib
- ../../bmesh
../../makesdna
../../makesrna
../../windowmanager
diff --git a/source/blender/editors/space_api/SConscript b/source/blender/editors/space_api/SConscript
index bd0f490a56d..2ba918ffc84 100644
--- a/source/blender/editors/space_api/SConscript
+++ b/source/blender/editors/space_api/SConscript
@@ -36,10 +36,8 @@ incs = [
'../io',
'../../blenkernel',
'../../blenlib',
- '../../bmesh',
'../../makesdna',
'../../makesrna',
- '../../python',
'../../windowmanager',
]
incs = ' '.join(incs)
diff --git a/source/blender/editors/space_nla/SConscript b/source/blender/editors/space_nla/SConscript
index a3063dae946..a00337e0b58 100644
--- a/source/blender/editors/space_nla/SConscript
+++ b/source/blender/editors/space_nla/SConscript
@@ -36,7 +36,6 @@ incs = [
'../../blenfont',
'../../blenkernel',
'../../blenlib',
- '../../imbuf',
'../../makesdna',
'../../makesrna',
'../../windowmanager',
diff --git a/source/blender/editors/space_script/CMakeLists.txt b/source/blender/editors/space_script/CMakeLists.txt
index 7aa07f4e022..26c4183f7df 100644
--- a/source/blender/editors/space_script/CMakeLists.txt
+++ b/source/blender/editors/space_script/CMakeLists.txt
@@ -44,9 +44,6 @@ if(WITH_PYTHON)
list(APPEND INC
../../python
)
- list(APPEND INC_SYS
- ${PYTHON_INCLUDE_DIRS}
- )
add_definitions(-DWITH_PYTHON)
endif()
diff --git a/source/blender/editors/space_text/CMakeLists.txt b/source/blender/editors/space_text/CMakeLists.txt
index d848ce33503..0bb8ede7cca 100644
--- a/source/blender/editors/space_text/CMakeLists.txt
+++ b/source/blender/editors/space_text/CMakeLists.txt
@@ -52,9 +52,6 @@ if(WITH_PYTHON)
list(APPEND INC
../../python
)
- list(APPEND INC_SYS
- ${PYTHON_INCLUDE_DIRS}
- )
add_definitions(-DWITH_PYTHON)
endif()
diff --git a/source/blender/editors/space_time/SConscript b/source/blender/editors/space_time/SConscript
index fb09fe2c11b..bf1b918f4f1 100644
--- a/source/blender/editors/space_time/SConscript
+++ b/source/blender/editors/space_time/SConscript
@@ -35,7 +35,6 @@ incs = [
'../include',
'../../blenkernel',
'../../blenlib',
- '../../imbuf',
'../../makesdna',
'../../makesrna',
'../../windowmanager',
diff --git a/source/blender/editors/transform/SConscript b/source/blender/editors/transform/SConscript
index eeefcedd014..f3c8c13647a 100644
--- a/source/blender/editors/transform/SConscript
+++ b/source/blender/editors/transform/SConscript
@@ -37,12 +37,9 @@ incs = [
'../../blenkernel',
'../../blenlib',
'../../bmesh',
- '../../gpu',
'../../ikplugin',
- '../../imbuf',
'../../makesdna',
'../../makesrna',
- '../../render/extern/include',
'../../windowmanager',
]
diff --git a/source/blender/editors/util/SConscript b/source/blender/editors/util/SConscript
index 120ffc69bc8..223ee5731f1 100644
--- a/source/blender/editors/util/SConscript
+++ b/source/blender/editors/util/SConscript
@@ -38,7 +38,6 @@ incs = [
'../../blenkernel',
'../../blenlib',
'../../bmesh',
- '../../imbuf',
'../../makesdna',
'../../makesrna',
'../../windowmanager',
diff --git a/source/blender/editors/uvedit/SConscript b/source/blender/editors/uvedit/SConscript
index 8b1cbd06f2c..413503191cd 100644
--- a/source/blender/editors/uvedit/SConscript
+++ b/source/blender/editors/uvedit/SConscript
@@ -41,7 +41,6 @@ incs = [
'../../blenlib',
'../../bmesh',
'../../gpu',
- '../../imbuf',
'../../makesdna',
'../../makesrna',
'../../windowmanager',
diff --git a/source/blender/nodes/SConscript b/source/blender/nodes/SConscript
index edb9c094121..683a1c475e4 100644
--- a/source/blender/nodes/SConscript
+++ b/source/blender/nodes/SConscript
@@ -40,17 +40,14 @@ incs = [
'./texture',
'#/intern/guardedalloc',
'#/extern/glew/include',
- '../avi',
'../blenfont',
'../blenkernel',
'../blenlib',
- '../editors/include',
'../gpu',
'../imbuf',
'../makesdna',
'../makesrna',
'../render/extern/include',
- '../renderconverter',
env['BF_OPENGL_INC'],
env['BF_ZLIB_INC'],
]
diff --git a/source/blender/render/CMakeLists.txt b/source/blender/render/CMakeLists.txt
index a907384e19e..94a95974009 100644
--- a/source/blender/render/CMakeLists.txt
+++ b/source/blender/render/CMakeLists.txt
@@ -129,10 +129,6 @@ if(WITH_PYTHON)
list(APPEND INC
../python
)
-
- list(APPEND INC_SYS
- ${PYTHON_INCLUDE_DIRS}
- )
endif()
if(WITH_IMAGE_OPENEXR)
diff --git a/source/blender/render/SConscript b/source/blender/render/SConscript
index ef5c5066426..297e4fcecd4 100644
--- a/source/blender/render/SConscript
+++ b/source/blender/render/SConscript
@@ -37,7 +37,6 @@ incs = [
'../blenfont',
'../blenkernel',
'../blenlib',
- '../bmesh',
'../imbuf',
'../include',
'../makesdna',
@@ -58,7 +57,6 @@ if env['WITH_BF_SMOKE']:
if env['WITH_BF_PYTHON']:
incs += ' ../python'
- incs += ' ' + env['BF_PYTHON_INC']
defs.append('WITH_PYTHON')
if env['BF_DEBUG']:
defs.append('DEBUG')
diff --git a/source/blender/windowmanager/CMakeLists.txt b/source/blender/windowmanager/CMakeLists.txt
index 65a8945f82b..b9a5b5ffaae 100644
--- a/source/blender/windowmanager/CMakeLists.txt
+++ b/source/blender/windowmanager/CMakeLists.txt
@@ -31,7 +31,6 @@ set(INC
../blenloader
../compositor
../editors/include
- ../editors/io
../gpu
../imbuf
../makesdna
@@ -39,11 +38,9 @@ set(INC
../nodes
../render/extern/include
../../gameengine/BlenderRoutines
- ../../../intern/elbeem/extern
../../../intern/ghost
../../../intern/guardedalloc
../../../intern/memutil
- ../../../intern/opennl/extern
)
set(INC_SYS
diff --git a/source/blender/windowmanager/SConscript b/source/blender/windowmanager/SConscript
index 89da9abaa8f..3a813d7d598 100644
--- a/source/blender/windowmanager/SConscript
+++ b/source/blender/windowmanager/SConscript
@@ -32,7 +32,6 @@ sources = env.Glob('intern/*.c')
incs = [
'.',
- '#/intern/elbeem',
'#/intern/ghost',
'#/intern/guardedalloc',
'#/intern/memutil',
@@ -42,7 +41,6 @@ incs = [
'../blenkernel',
'../blenlib',
'../blenloader',
- '../bmesh',
'../compositor',
'../editors/include',
'../gpu',
@@ -51,7 +49,6 @@ incs = [
'../makesrna',
'../nodes',
'../python',
- '../radiosity/extern/include',
'../render/extern/include',
env['BF_ZLIB_INC'],
]
diff --git a/source/gameengine/Rasterizer/SConscript b/source/gameengine/Rasterizer/SConscript
index 860b5992daa..5c68ce63a3b 100644
--- a/source/gameengine/Rasterizer/SConscript
+++ b/source/gameengine/Rasterizer/SConscript
@@ -31,26 +31,23 @@ sources = env.Glob('*.cpp')
incs = [
'.',
- '#/intern/guardedalloc',
- '#/intern/string',
- '#/intern/moto/include',
- '#/intern/container',
- '#/source/gameengine/BlenderRoutines',
- '#/extern/glew/include',
- '#/source/gameengine/Expressions',
- '#/source/gameengine/SceneGraph',
- '#/source/blender/blenlib',
- '#/source/blender/blenkernel',
- '#/source/blender/makesdna',
+ '#intern/guardedalloc',
+ '#intern/string',
+ '#intern/moto/include',
+ '#intern/container',
+ '#source/gameengine/BlenderRoutines',
+ '#extern/glew/include',
+ '#source/gameengine/Expressions',
+ '#source/gameengine/SceneGraph',
+ '#source/blender/blenlib',
+ '#source/blender/blenkernel',
+ '#source/blender/makesdna',
]
defs = ['GLEW_STATIC']
if env['WITH_BF_PYTHON']:
- if type(env['BF_PYTHON_INC']) == str:
- incs.append(env['BF_PYTHON_INC'].split(' '))
- else:
- incs.append(env['BF_PYTHON_INC'])
+ incs.extend(Split(env['BF_PYTHON_INC']))
defs.append('WITH_PYTHON')
if env['WITH_BF_CXX_GUARDEDALLOC']: