2017-06-05 16:02:39 +03:00
|
|
|
# Copyright (c) 2014-present PlatformIO <contact@platformio.org>
|
2015-11-18 17:16:17 +02: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
|
|
|
|
|
#
|
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
#
|
|
|
|
|
# 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.
|
2014-05-18 23:38:59 +03:00
|
|
|
|
2015-08-03 15:08:54 +03:00
|
|
|
from os import environ
|
2019-05-30 17:08:00 +03:00
|
|
|
from os.path import join
|
2015-02-15 18:18:11 +02:00
|
|
|
from time import time
|
2014-05-18 23:38:59 +03:00
|
|
|
|
2019-06-12 22:02:59 +03:00
|
|
|
import click
|
2019-05-07 21:16:42 +03:00
|
|
|
from SCons.Script import ARGUMENTS # pylint: disable=import-error
|
|
|
|
|
from SCons.Script import COMMAND_LINE_TARGETS # pylint: disable=import-error
|
|
|
|
|
from SCons.Script import DEFAULT_TARGETS # pylint: disable=import-error
|
|
|
|
|
from SCons.Script import AllowSubstExceptions # pylint: disable=import-error
|
|
|
|
|
from SCons.Script import AlwaysBuild # pylint: disable=import-error
|
|
|
|
|
from SCons.Script import Default # pylint: disable=import-error
|
|
|
|
|
from SCons.Script import DefaultEnvironment # pylint: disable=import-error
|
2019-05-24 16:06:27 +03:00
|
|
|
from SCons.Script import Import # pylint: disable=import-error
|
2019-05-07 21:16:42 +03:00
|
|
|
from SCons.Script import Variables # pylint: disable=import-error
|
2014-05-18 23:38:59 +03:00
|
|
|
|
2015-12-26 14:47:42 +02:00
|
|
|
from platformio import util
|
2019-06-03 17:44:41 +03:00
|
|
|
from platformio.compat import PY2, dump_json_to_unicode
|
2019-06-03 13:30:35 +03:00
|
|
|
from platformio.managers.platform import PlatformBase
|
2019-05-16 21:03:15 +03:00
|
|
|
from platformio.proc import get_pythonexe_path
|
2019-05-24 20:49:05 +03:00
|
|
|
from platformio.project import helpers as project_helpers
|
2015-02-15 18:02:59 +02:00
|
|
|
|
2016-07-17 00:48:59 +03:00
|
|
|
AllowSubstExceptions(NameError)
|
2014-05-18 23:38:59 +03:00
|
|
|
|
2019-05-30 17:08:00 +03:00
|
|
|
# append CLI arguments to build environment
|
|
|
|
|
clivars = Variables(None)
|
|
|
|
|
clivars.AddVariables(
|
2016-05-26 19:43:36 +03:00
|
|
|
("PLATFORM_MANIFEST",),
|
2014-11-22 23:55:17 +02:00
|
|
|
("BUILD_SCRIPT",),
|
2019-05-30 17:08:00 +03:00
|
|
|
("PROJECT_CONFIG",),
|
2014-05-18 23:38:59 +03:00
|
|
|
("PIOENV",),
|
2019-05-31 15:47:25 +03:00
|
|
|
("PIOTEST_RUNNING_NAME",),
|
2019-05-30 17:08:00 +03:00
|
|
|
("UPLOAD_PORT",)
|
2016-08-01 00:14:22 +03:00
|
|
|
) # yapf: disable
|
2014-05-18 23:38:59 +03:00
|
|
|
|
2016-08-27 19:30:38 +03:00
|
|
|
DEFAULT_ENV_OPTIONS = dict(
|
2015-03-04 21:21:10 +02:00
|
|
|
tools=[
|
2018-01-26 20:50:33 +02:00
|
|
|
"ar", "gas", "gcc", "g++", "gnulink", "platformio", "pioplatform",
|
2019-05-30 17:08:00 +03:00
|
|
|
"pioproject", "piowinhooks", "piolib", "pioupload", "piomisc", "pioide"
|
|
|
|
|
],
|
2016-05-26 19:43:36 +03:00
|
|
|
toolpath=[join(util.get_source_dir(), "builder", "tools")],
|
2019-05-30 17:08:00 +03:00
|
|
|
variables=clivars,
|
2014-05-18 23:38:59 +03:00
|
|
|
|
2015-08-03 15:08:54 +03:00
|
|
|
# Propagating External Environment
|
|
|
|
|
ENV=environ,
|
2015-02-15 18:18:11 +02:00
|
|
|
UNIX_TIME=int(time()),
|
2019-05-24 20:49:05 +03:00
|
|
|
PROJECT_DIR=project_helpers.get_project_dir(),
|
|
|
|
|
PROJECTCORE_DIR=project_helpers.get_project_core_dir(),
|
2019-06-01 14:36:07 +03:00
|
|
|
PROJECTPACKAGES_DIR=project_helpers.get_project_packages_dir(),
|
2019-05-24 20:49:05 +03:00
|
|
|
PROJECTWORKSPACE_DIR=project_helpers.get_project_workspace_dir(),
|
|
|
|
|
PROJECTLIBDEPS_DIR=project_helpers.get_project_libdeps_dir(),
|
|
|
|
|
PROJECTINCLUDE_DIR=project_helpers.get_project_include_dir(),
|
|
|
|
|
PROJECTSRC_DIR=project_helpers.get_project_src_dir(),
|
|
|
|
|
PROJECTTEST_DIR=project_helpers.get_project_test_dir(),
|
|
|
|
|
PROJECTDATA_DIR=project_helpers.get_project_data_dir(),
|
|
|
|
|
PROJECTBUILD_DIR=project_helpers.get_project_build_dir(),
|
2018-01-03 15:47:02 +02:00
|
|
|
BUILD_DIR=join("$PROJECTBUILD_DIR", "$PIOENV"),
|
2015-06-22 17:27:32 +03:00
|
|
|
BUILDSRC_DIR=join("$BUILD_DIR", "src"),
|
2016-05-30 17:50:37 +03:00
|
|
|
BUILDTEST_DIR=join("$BUILD_DIR", "test"),
|
2018-05-14 22:13:42 -07:00
|
|
|
LIBPATH=["$BUILD_DIR"],
|
2014-06-14 22:12:32 +03:00
|
|
|
LIBSOURCE_DIRS=[
|
2019-05-24 20:49:05 +03:00
|
|
|
project_helpers.get_project_lib_dir(),
|
2019-05-23 00:23:24 +03:00
|
|
|
join("$PROJECTLIBDEPS_DIR", "$PIOENV"),
|
2019-05-24 20:49:05 +03:00
|
|
|
project_helpers.get_project_global_lib_dir()
|
2015-12-30 20:01:43 +02:00
|
|
|
],
|
2017-03-31 18:55:19 +03:00
|
|
|
PROGNAME="program",
|
|
|
|
|
PROG_PATH=join("$BUILD_DIR", "$PROGNAME$PROGSUFFIX"),
|
2019-05-16 21:03:15 +03:00
|
|
|
PYTHONEXE=get_pythonexe_path())
|
2014-05-18 23:38:59 +03:00
|
|
|
|
2016-08-27 19:30:38 +03:00
|
|
|
if not int(ARGUMENTS.get("PIOVERBOSE", 0)):
|
|
|
|
|
DEFAULT_ENV_OPTIONS['ARCOMSTR'] = "Archiving $TARGET"
|
|
|
|
|
DEFAULT_ENV_OPTIONS['LINKCOMSTR'] = "Linking $TARGET"
|
|
|
|
|
DEFAULT_ENV_OPTIONS['RANLIBCOMSTR'] = "Indexing $TARGET"
|
2016-08-29 14:10:09 +03:00
|
|
|
for k in ("ASCOMSTR", "ASPPCOMSTR", "CCCOMSTR", "CXXCOMSTR"):
|
2016-08-27 19:30:38 +03:00
|
|
|
DEFAULT_ENV_OPTIONS[k] = "Compiling $TARGET"
|
|
|
|
|
|
|
|
|
|
env = DefaultEnvironment(**DEFAULT_ENV_OPTIONS)
|
2016-07-17 00:48:59 +03:00
|
|
|
|
2019-05-30 17:08:00 +03:00
|
|
|
# Load variables from CLI
|
2019-06-03 13:30:35 +03:00
|
|
|
env.Replace(
|
|
|
|
|
**{
|
|
|
|
|
key: PlatformBase.decode_scons_arg(env[key])
|
|
|
|
|
for key in list(clivars.keys()) if key in env
|
|
|
|
|
})
|
2019-05-30 17:08:00 +03:00
|
|
|
|
2019-06-12 22:02:59 +03:00
|
|
|
if int(ARGUMENTS.get("ISATTY", 0)):
|
|
|
|
|
# pylint: disable=protected-access
|
|
|
|
|
click._compat.isatty = lambda stream: True
|
|
|
|
|
|
2019-05-30 23:33:57 +03:00
|
|
|
if env.GetOption('clean'):
|
|
|
|
|
env.PioClean(env.subst("$BUILD_DIR"))
|
|
|
|
|
env.Exit(0)
|
|
|
|
|
elif not int(ARGUMENTS.get("PIOVERBOSE", 0)):
|
|
|
|
|
print("Verbose mode can be enabled via `-v, --verbose` option")
|
|
|
|
|
|
2019-05-30 17:08:00 +03:00
|
|
|
env.LoadProjectOptions()
|
|
|
|
|
env.LoadPioPlatform()
|
2016-05-26 19:43:36 +03:00
|
|
|
|
2015-12-05 23:21:16 +02:00
|
|
|
env.SConscriptChdir(0)
|
2018-12-26 20:54:29 +02:00
|
|
|
env.SConsignFile(
|
|
|
|
|
join("$PROJECTBUILD_DIR",
|
2019-05-10 17:50:08 +03:00
|
|
|
".sconsign.dblite" if PY2 else ".sconsign3.dblite"))
|
2017-06-30 00:15:49 +03:00
|
|
|
|
2018-03-20 19:24:05 +02:00
|
|
|
for item in env.GetExtraScripts("pre"):
|
2017-06-30 00:15:49 +03:00
|
|
|
env.SConscript(item, exports="env")
|
|
|
|
|
|
2015-12-05 23:21:16 +02:00
|
|
|
env.SConscript("$BUILD_SCRIPT")
|
2015-06-19 15:29:22 +03:00
|
|
|
|
2015-12-11 15:17:38 +02:00
|
|
|
if "UPLOAD_FLAGS" in env:
|
2018-05-05 21:15:50 +03:00
|
|
|
env.Prepend(UPLOADERFLAGS=["$UPLOAD_FLAGS"])
|
2019-06-01 14:36:07 +03:00
|
|
|
if env.GetProjectOption("upload_command"):
|
|
|
|
|
env.Replace(UPLOADCMD=env.GetProjectOption("upload_command"))
|
2015-12-11 15:17:38 +02:00
|
|
|
|
2018-03-20 19:24:05 +02:00
|
|
|
for item in env.GetExtraScripts("post"):
|
2017-06-30 00:15:49 +03:00
|
|
|
env.SConscript(item, exports="env")
|
2015-06-19 15:29:22 +03:00
|
|
|
|
2018-06-04 14:09:48 +03:00
|
|
|
##############################################################################
|
|
|
|
|
|
|
|
|
|
# Checking program size
|
|
|
|
|
if env.get("SIZETOOL") and "nobuild" not in COMMAND_LINE_TARGETS:
|
|
|
|
|
env.Depends(["upload", "program"], "checkprogsize")
|
|
|
|
|
# Replace platform's "size" target with our
|
|
|
|
|
_new_targets = [t for t in DEFAULT_TARGETS if str(t) != "size"]
|
|
|
|
|
Default(None)
|
|
|
|
|
Default(_new_targets)
|
|
|
|
|
Default("checkprogsize")
|
|
|
|
|
|
|
|
|
|
# Print configured protocols
|
|
|
|
|
env.AddPreAction(
|
|
|
|
|
["upload", "program"],
|
|
|
|
|
env.VerboseAction(lambda source, target, env: env.PrintUploadInfo(),
|
|
|
|
|
"Configuring upload protocol..."))
|
|
|
|
|
|
2018-09-06 02:25:28 +03:00
|
|
|
AlwaysBuild(env.Alias("debug", DEFAULT_TARGETS))
|
2018-06-04 14:09:48 +03:00
|
|
|
AlwaysBuild(env.Alias("__test", DEFAULT_TARGETS))
|
|
|
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
|
|
2015-06-19 15:29:22 +03:00
|
|
|
if "envdump" in COMMAND_LINE_TARGETS:
|
2018-10-27 20:22:11 +03:00
|
|
|
print(env.Dump())
|
2016-09-02 18:45:19 +03:00
|
|
|
env.Exit(0)
|
2015-06-19 15:29:22 +03:00
|
|
|
|
|
|
|
|
if "idedata" in COMMAND_LINE_TARGETS:
|
2019-06-03 17:44:41 +03:00
|
|
|
Import("projenv")
|
|
|
|
|
print("\n%s\n" % dump_json_to_unicode(
|
|
|
|
|
env.DumpIDEData(projenv) # pylint: disable=undefined-variable
|
|
|
|
|
))
|
|
|
|
|
env.Exit(0)
|