Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | // |
michael@0 | 2 | // DebugProject.xcconfig |
michael@0 | 3 | // |
michael@0 | 4 | // These are Debug Configuration project settings for the gtest framework and |
michael@0 | 5 | // examples. It is set in the "Based On:" dropdown in the "Project" info |
michael@0 | 6 | // dialog. |
michael@0 | 7 | // This file is based on the Xcode Configuration files in: |
michael@0 | 8 | // http://code.google.com/p/google-toolbox-for-mac/ |
michael@0 | 9 | // |
michael@0 | 10 | |
michael@0 | 11 | #include "General.xcconfig" |
michael@0 | 12 | |
michael@0 | 13 | // No optimization |
michael@0 | 14 | GCC_OPTIMIZATION_LEVEL = 0 |
michael@0 | 15 | |
michael@0 | 16 | // Deployment postprocessing is what triggers Xcode to strip, turn it off |
michael@0 | 17 | DEPLOYMENT_POSTPROCESSING = NO |
michael@0 | 18 | |
michael@0 | 19 | // Dead code stripping off |
michael@0 | 20 | DEAD_CODE_STRIPPING = NO |
michael@0 | 21 | |
michael@0 | 22 | // Debug symbols should be on obviously |
michael@0 | 23 | GCC_GENERATE_DEBUGGING_SYMBOLS = YES |
michael@0 | 24 | |
michael@0 | 25 | // Define the DEBUG macro in all debug builds |
michael@0 | 26 | OTHER_CFLAGS = $(OTHER_CFLAGS) -DDEBUG=1 |
michael@0 | 27 | |
michael@0 | 28 | // These are turned off to avoid STL incompatibilities with client code |
michael@0 | 29 | // // Turns on special C++ STL checks to "encourage" good STL use |
michael@0 | 30 | // GCC_PREPROCESSOR_DEFINITIONS = $(GCC_PREPROCESSOR_DEFINITIONS) _GLIBCXX_DEBUG_PEDANTIC _GLIBCXX_DEBUG _GLIBCPP_CONCEPT_CHECKS |