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

github.com/mono/bockbuild.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Hutchinson <m.j.hutchinson@gmail.com>2011-07-25 23:18:05 +0400
committerMichael Hutchinson <m.j.hutchinson@gmail.com>2011-07-25 23:18:05 +0400
commita70ba0896d3dea65f8e92fa9c64fe7a39d5348f2 (patch)
tree4eae86e7249c6b38138f668267579a8f7f649e27
parent36755e8cc3f166b5781b4f35f064d18404063d17 (diff)
Build mac dev profile with debug info
-rwxr-xr-xprofiles/monodevelop-mac-dev/monodevelop-mac-dev.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/profiles/monodevelop-mac-dev/monodevelop-mac-dev.py b/profiles/monodevelop-mac-dev/monodevelop-mac-dev.py
index e588f46..bb7cdd3 100755
--- a/profiles/monodevelop-mac-dev/monodevelop-mac-dev.py
+++ b/profiles/monodevelop-mac-dev/monodevelop-mac-dev.py
@@ -12,7 +12,9 @@ class MonoDevelopMacDevProfile (DarwinProfile, MonoDevelopMacDevPackages):
def __init__ (self):
DarwinProfile.__init__ (self)
MonoDevelopMacDevPackages.__init__ (self)
-
+
+ self.gcc_flags.extend ([ '-g' ])
+
self_dir = os.path.realpath (os.path.dirname (sys.argv[0]))
MonoDevelopMacDevProfile ().build ()