Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dist/tools/cosy: take BUILD_DIR into account #20789

Merged
merged 1 commit into from
Jul 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
From 40e6dfb3ba9c50d0bac3931b981822aaa20375a6 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Mikolai=20G=C3=BCtschow?= <mikolai.guetschow@tu-dresden.de>
Date: Tue, 16 Jul 2024 16:48:49 +0200
Subject: [PATCH] take BUILD_DIR environment variable into account

---
cosy.py | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/cosy.py b/cosy.py
index 7a15cc5..5d66f6b 100755
--- a/cosy.py
+++ b/cosy.py
@@ -17,7 +17,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.

import sys
-from os import path
+from os import path, environ
from pathlib import Path
import argparse
import re
@@ -156,6 +156,8 @@ def parse_elffile(elffile, prefix, appdir, riot_base=None):

rbase.append("RIOT")
rbase.append("riotbuild/riotbase")
+ if "BUILD_DIR" in environ:
+ rbase.append(environ["BUILD_DIR"])
riot_base = "|".join([f'{p}/build|{p}' for p in rbase])

c = re.compile(r"(?P<addr>[0-9a-f]+) "
--
2.39.2

Loading