Skip to content

Commit

Permalink
Detect extra ENVS in preflight-checks.py
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Mar 16, 2021
1 parent 5ffa6f3 commit 9914e0e
Showing 1 changed file with 29 additions and 19 deletions.
48 changes: 29 additions & 19 deletions buildroot/share/PlatformIO/scripts/preflight-checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,33 +2,34 @@
# preflight-checks.py
# Check for common issues prior to compiling
#
import os,re
import os,re,sys
Import("env")

def get_envs_for_board(board):
if board.startswith("BOARD_"):
board = board[6:]
with open(os.path.join("Marlin", "src", "pins", "pins.h"),"r") as f:
board_found = ""
r=re.compile(r"if\s+MB\((.+)\)")
for line in f.readlines():
def get_envs_for_board(board, envregex):
with open(os.path.join("Marlin", "src", "pins", "pins.h"), "r") as file:
r = re.compile(r"if\s+MB\((.+)\)")
if board.startswith("BOARD_"):
board = board[6:]

for line in file:
mbs = r.findall(line)
if mbs:
board_found = board if board in re.split(r",\s*", mbs[0]) else ""
if board_found and "#include " in line and "env:" in line:
return re.findall(r"env:\w+", line)
if mbs and board in re.split(r",\s*", mbs[0]):
line = file.readline()
found_envs = re.match(r"\s*#include .+" + envregex, line)
if found_envs:
return re.findall(envregex + r"(\w+)", line)
return []

def check_envs(build_env, base_envs, config):
if build_env in base_envs:
def check_envs(build_env, board_envs, config):
if build_env in board_envs:
return True
ext = config.get(build_env, 'extends', default=None)
if ext:
if isinstance(ext, str):
return check_envs(ext, base_envs, config)
return check_envs(ext, board_envs, config)
elif isinstance(ext, list):
for ext_env in ext:
if check_envs(ext_env, base_envs, config):
if check_envs(ext_env, board_envs, config):
return True
return False

Expand All @@ -42,15 +43,24 @@ def check_envs(build_env, base_envs, config):
if 'MOTHERBOARD' not in env['MARLIN_FEATURES']:
raise SystemExit("Error: MOTHERBOARD is not defined in Configuration.h")

if sys.platform == 'win32':
osregex = r"(?:env|win):"
elif sys.platform == 'darwin':
osregex = r"(?:env|mac|uni):"
elif sys.platform == 'linux':
osregex = r"(?:env|lin|uni):"
else:
osregex = r"(?:env):"

build_env = env['PIOENV']
motherboard = env['MARLIN_FEATURES']['MOTHERBOARD']
base_envs = get_envs_for_board(motherboard)
board_envs = get_envs_for_board(motherboard, osregex)
config = env.GetProjectConfig()
result = check_envs("env:"+build_env, base_envs, config)
result = check_envs(build_env, board_envs, config)

if not result:
err = "Error: Build environment '%s' is incompatible with %s. Use one of these: %s" % \
(build_env, motherboard, ",".join([e[4:] for e in base_envs if e.startswith("env:")]))
(build_env, motherboard, ",".join([e[4:] for e in board_envs if re.match(r"^" + osregex)]))
raise SystemExit(err)

#
Expand Down

0 comments on commit 9914e0e

Please sign in to comment.