1//===-- Debug.xcconfig ----------------------------------------------------===//
2//
3// This source file is part of the Swift.org open source project
4//
5// Copyright (c) 2017 Apple Inc. and the Swift project authors
6// Licensed under Apache License v2.0 with Runtime Library Exception
7//
8// See http://swift.org/LICENSE.txt for license information
9// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
10//
11//===----------------------------------------------------------------------===//
12
13// Shared build settings.
14#include "Common.xcconfig"
15
16// Only build the active architecture for Debug.
17ONLY_ACTIVE_ARCH = YES
18
19DEBUG_INFORMATION_FORMAT = dwarf
20
21GCC_OPTIMIZATION_LEVEL = 0
22
23GCC_PREPROCESSOR_DEFINITIONS = $(COMMON_PREPROCESSOR_DEFINITIONS)
24