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>2008-11-17 13:43:12 +0300
committerCampbell Barton <ideasman42@gmail.com>2008-11-17 13:43:12 +0300
commit3a1cfa50151f2a157b15774dd30a6f285cb4fa87 (patch)
tree891957fe1ee8aa8bd1dc4d1b25c62c56f1cccbe0 /config/win32-mingw-config.py
parent0bee65b624c7e6a1dd899f4f43cc1c2119f03c2d (diff)
Added BF_PROFILE_LINKFLAGS, Compiling with BF_PROFILE=1 was also throwing a python error.
Diffstat (limited to 'config/win32-mingw-config.py')
-rw-r--r--config/win32-mingw-config.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/config/win32-mingw-config.py b/config/win32-mingw-config.py
index 22666851f28..6278672ca3d 100644
--- a/config/win32-mingw-config.py
+++ b/config/win32-mingw-config.py
@@ -164,7 +164,8 @@ LLIBS = ['-lshell32', '-lshfolder', '-lgdi32', '-lmsvcrt', '-lwinmm', '-lmingw32
BF_DEBUG = False
BF_DEBUG_CCFLAGS= ['-g']
-BF_PROFILE_CCFLAGS = ['-pg','-g']
+BF_PROFILE_CCFLAGS = ['-pg', '-g ']
+BF_PROFILE_LINKFLAGS = ['-pg']
BF_PROFILE = False
BF_BUILDDIR = '..\\build\\win32-mingw'