2016-06-12 09:59:51 +00:00
|
|
|
"""
|
|
|
|
mbed SDK
|
2016-06-24 20:40:04 +00:00
|
|
|
Copyright (c) 2016 ARM Limited
|
|
|
|
|
2016-06-12 09:59:51 +00:00
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
2016-06-24 20:40:04 +00:00
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
2016-06-12 09:59:51 +00:00
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
"""
|
|
|
|
|
|
|
|
from os.path import join, abspath, dirname
|
|
|
|
|
2016-06-24 20:40:04 +00:00
|
|
|
#ROOT = abspath(join(dirname(__file__), "."))
|
2016-06-12 09:59:51 +00:00
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
# Build System Settings
|
|
|
|
##############################################################################
|
2016-06-24 20:40:04 +00:00
|
|
|
#BUILD_DIR = abspath(join(ROOT, "build"))
|
2016-06-12 09:59:51 +00:00
|
|
|
|
|
|
|
# ARM
|
2016-06-24 20:40:04 +00:00
|
|
|
#ARM_PATH = "C:/Program Files/ARM"
|
2016-06-12 09:59:51 +00:00
|
|
|
|
|
|
|
# GCC ARM
|
2016-06-24 20:40:04 +00:00
|
|
|
#GCC_ARM_PATH = ""
|
2016-06-12 09:59:51 +00:00
|
|
|
|
|
|
|
# GCC CodeRed
|
2016-06-24 20:40:04 +00:00
|
|
|
#GCC_CR_PATH = "C:/code_red/RedSuite_4.2.0_349/redsuite/Tools/bin"
|
2016-06-12 09:59:51 +00:00
|
|
|
|
|
|
|
# IAR
|
2016-06-24 20:40:04 +00:00
|
|
|
#IAR_PATH = "C:/Program Files (x86)/IAR Systems/Embedded Workbench 7.0/arm"
|
2016-06-12 09:59:51 +00:00
|
|
|
|
|
|
|
# Goanna static analyser. Please overload it in private_settings.py
|
2016-06-24 20:40:04 +00:00
|
|
|
#GOANNA_PATH = "c:/Program Files (x86)/RedLizards/Goanna Central 3.2.3/bin"
|
2016-06-12 09:59:51 +00:00
|
|
|
|
2016-06-24 20:40:04 +00:00
|
|
|
#BUILD_OPTIONS = []
|
2016-06-12 09:59:51 +00:00
|
|
|
|
|
|
|
# mbed.org username
|
2016-06-24 20:40:04 +00:00
|
|
|
#MBED_ORG_USER = ""
|
2018-03-05 14:44:49 +00:00
|
|
|
|
|
|
|
# Print compiler warnings and errors as link format
|
|
|
|
#PRINT_COMPILER_OUTPUT_AS_LINK = False
|