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:
authorNathan Letwory <nathan@letworyinteractive.com>2007-12-30 20:17:02 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2007-12-30 20:17:02 +0300
commita80b8352c6860db911057a1e7a4eab3c45ff80b8 (patch)
tree35763025fbfd8d9578bd209132ebabd35e8b26a2
parent93058ac3b3749eae4a595e66365946d112ee321d (diff)
* request by kaito - we're debugging 2.5 now more than using it anyway... BF_DEBUG = 'true' set by default.
-rw-r--r--config/darwin-config.py2
-rw-r--r--config/linux2-config.py2
-rw-r--r--config/linuxcross-config.py2
-rw-r--r--config/openbsd3-config.py2
-rw-r--r--config/sunos5-config.py2
-rw-r--r--config/win32-mingw-config.py2
-rw-r--r--config/win32-vc-config.py3
7 files changed, 9 insertions, 6 deletions
diff --git a/config/darwin-config.py b/config/darwin-config.py
index 5a2fc93c52d..51ecaae1331 100644
--- a/config/darwin-config.py
+++ b/config/darwin-config.py
@@ -178,7 +178,7 @@ LLIBS = 'stdc++ SystemStubs'
BF_PROFILE_FLAGS = ' -pg -g '
BF_PROFILE = 'false'
-BF_DEBUG = 'false'
+BF_DEBUG = 'true'
BF_DEBUG_FLAGS = '-g'
BF_BUILDDIR='../build/darwin'
diff --git a/config/linux2-config.py b/config/linux2-config.py
index 4bf7e755c49..013020ee78d 100644
--- a/config/linux2-config.py
+++ b/config/linux2-config.py
@@ -163,7 +163,7 @@ LLIBS = 'util c m dl pthread stdc++'
BF_PROFILE_FLAGS = ['-pg','-g']
BF_PROFILE = 'false'
-BF_DEBUG = 'false'
+BF_DEBUG = 'true'
BF_DEBUG_FLAGS = '-g'
BF_BUILDDIR = '../build/linux2'
diff --git a/config/linuxcross-config.py b/config/linuxcross-config.py
index e6c4e8769b4..231e4c451e9 100644
--- a/config/linuxcross-config.py
+++ b/config/linuxcross-config.py
@@ -132,7 +132,7 @@ CC_WARN = [ '-Wall' ]
LLIBS = [ '-ldxguid', '-lgdi32', '-lmsvcrt', '-lwinmm', '-lmingw32', '-lm', '-lws2_32', '-lz'] #'-lutil', '-lc', '-lm', '-ldl', '-lpthread' ]
-BF_DEBUG = 'false'
+BF_DEBUG = 'true'
BF_DEBUG_FLAGS= ''
BF_BUILDDIR = '../build/linuxcross'
diff --git a/config/openbsd3-config.py b/config/openbsd3-config.py
index f7f254973af..c860f295e6a 100644
--- a/config/openbsd3-config.py
+++ b/config/openbsd3-config.py
@@ -153,7 +153,7 @@ LLIBS = 'm stdc++ pthread util'
BF_PROFILE_FLAGS = ' -pg -g '
BF_PROFILE = 'false'
-BF_DEBUG = 'false'
+BF_DEBUG = 'true'
BF_DEBUG_FLAGS = '-g'
BF_BUILDDIR='../build/openbsd3'
diff --git a/config/sunos5-config.py b/config/sunos5-config.py
index b3ca0e267ff..ee661e99824 100644
--- a/config/sunos5-config.py
+++ b/config/sunos5-config.py
@@ -161,7 +161,7 @@ LLIBS = 'c m dl pthread stdc++'
BF_PROFILE_FLAGS = ['-pg','-g']
BF_PROFILE = 'false'
-BF_DEBUG = 'false'
+BF_DEBUG = 'true'
BF_DEBUG_FLAGS = ''
BF_BUILDDIR = '../build/sunos5'
diff --git a/config/win32-mingw-config.py b/config/win32-mingw-config.py
index 8c8c12db46f..3284f6fab77 100644
--- a/config/win32-mingw-config.py
+++ b/config/win32-mingw-config.py
@@ -153,7 +153,7 @@ CC_WARN = [ '-Wall' ]
LLIBS = ['-lshell32', '-lshfolder', '-ldxguid', '-lgdi32', '-lmsvcrt', '-lwinmm', '-lmingw32', '-lm', '-lws2_32', '-lz', '-lstdc++']
-BF_DEBUG = 'false'
+BF_DEBUG = 'true'
BF_DEBUG_FLAGS= '-g'
BF_BUILDDIR = '..\\build\\win32-mingw'
diff --git a/config/win32-vc-config.py b/config/win32-vc-config.py
index d1a63022ac8..8633a89c091 100644
--- a/config/win32-vc-config.py
+++ b/config/win32-vc-config.py
@@ -173,3 +173,6 @@ PLATFORM_LINKFLAGS = '''
BF_BUILDDIR = '..\\build\\win32-vc'
BF_INSTALLDIR='..\\install\\win32-vc'
+
+BF_DEBUG = 'true'
+BF_BSC = 'false'