64_cross_debug.py (903B)
1 # This Source Code Form is subject to the terms of the Mozilla Public 2 # License, v. 2.0. If a copy of the MPL was not distributed with this 3 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 5 import os 6 7 config = { 8 "stage_platform": "macosx64-debug", 9 "debug_build": True, 10 #### 64 bit build specific ##### 11 "env": { 12 "MOZBUILD_STATE_PATH": os.path.join(os.getcwd(), ".mozbuild"), 13 "HG_SHARE_BASE_DIR": "/builds/hg-shared", 14 "MOZ_OBJDIR": "%(abs_obj_dir)s", 15 "TINDERBOX_OUTPUT": "1", 16 "TOOLTOOL_CACHE": "/builds/tooltool_cache", 17 "TOOLTOOL_HOME": "/builds", 18 "MOZ_CRASHREPORTER_NO_REPORT": "1", 19 "LC_ALL": "C", 20 "XPCOM_DEBUG_BREAK": "stack-and-abort", 21 ## 64 bit specific 22 "PATH": "/tools/python/bin:/opt/local/bin:/usr/bin:" 23 "/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin", 24 ## 25 }, 26 }