Re: Update to GDB 11.2?

2022-02-25 Thread Anders Montonen
Hi, > On 25 Feb 2022, at 7:53, Sebastian Huber > wrote: > > On 24/02/2022 14:53, Sebastian Huber wrote: >> On 24/02/2022 14:40, Joel Sherrill wrote: >>> On Thu, Feb 24, 2022, 5:50 AM Sebastian Huber >>> >> > wrote: >>> >>> Hello, >>> >>> we

Re: [PATCH rtems-docs v2] Update package list for Ubuntu

2021-12-22 Thread Anders Montonen
The latest version is Ubuntu 18.04.1 LTS 64-bit. This section also includes > +The latest version is Ubuntu 20.04.3 LTS 64-bit. This section also includes Regards, Anders Montonen ___ devel mailing list devel@rtems.org http://lists.rtems.org/mailman/listinfo/devel

Re: Build fail on debian - Toolset build error

2020-10-12 Thread Anders Montonen
Hi, > On 12 Oct 2020, at 15:30, Karel Gardas wrote: > > > Sure, but you have to install header files whatever this means on > macosx. On Ubuntu this means 'apt install python2.7-dev’ System frameworks on macOs usually include the development libraries and headers. Running “python-config

Re: [PATCH 0/2] Source Builder: Fix UnicodeDecodeError build hang

2020-05-08 Thread Anders Montonen
On 8 May 2020, at 9:12, Chris Johns wrote: > On 8/5/20 3:50 pm, Anders Montonen wrote: > >> On a not completely unrelated note, have there been any thoughts about >> setting a timetable for deprecating Python 2 support now that it is EOL, eg. >> in RTEMS6? Are there any

Re: [PATCH 0/2] Source Builder: Fix UnicodeDecodeError build hang

2020-05-07 Thread Anders Montonen
> On 8 May 2020, at 7:36, Chris Johns wrote: > > On 8/5/20 2:27 pm, Anders Montonen wrote: >> Hi, >>> On 7 May 2020, at 5:10, Chris Johns wrote: >>> >>> On 7/5/20 9:37 am, Anders Montonen wrote: >>>> This patch fixes the UnicodeDecode

Re: [PATCH 0/2] Source Builder: Fix UnicodeDecodeError build hang

2020-05-07 Thread Anders Montonen
Hi, > On 7 May 2020, at 5:10, Chris Johns wrote: > > On 7/5/20 9:37 am, Anders Montonen wrote: >> This patch fixes the UnicodeDecodeError that randomly caused source >> builder to hang. >> >> In my testing, there was no difference in performance at least under

Re: [PATCH 0/2] Source Builder: Fix UnicodeDecodeError build hang

2020-05-07 Thread Anders Montonen
Hi, > On 7 May 2020, at 5:10, Chris Johns wrote: > > On 7/5/20 9:37 am, Anders Montonen wrote: >> This patch fixes the UnicodeDecodeError that randomly caused source >> builder to hang. >> >> In my testing, there was no difference in performance at least under

[PATCH 0/2] Source Builder: Fix UnicodeDecodeError build hang

2020-05-06 Thread Anders Montonen
This patch fixes the UnicodeDecodeError that randomly caused source builder to hang. In my testing, there was no difference in performance at least under Python 3. Anders Montonen (2): sb/execute.py: Open subprocess I/O handles in text mode sb/execute.py: Add test for _readthread() code

[PATCH 1/2] sb/execute.py: Open subprocess I/O handles in text mode

2020-05-06 Thread Anders Montonen
._target(*self._args, **self._kwargs) File "/home/anders/work/rtems/rsb/source-builder/sb/execute.py", line 204, in _readthread data = data.decode(sys.stdout.encoding) UnicodeDecodeError: 'utf-8' codec can't decode bytes in position 4094-4095: unexpected end of data Signed-off-by

[PATCH 2/2] sb/execute.py: Add test for _readthread() code point splitting

2020-05-06 Thread Anders Montonen
Signed-off-by: Anders Montonen --- source-builder/sb/execute.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source-builder/sb/execute.py b/source-builder/sb/execute.py index 092267b..fc379ae 100755 --- a/source-builder/sb/execute.py +++ b/source-builder/sb/execute.py

Re: m2005 untar error on msys2 (tar01 directory)

2020-05-05 Thread Anders Montonen
Hi, > On 5 May 2020, at 8:44, Sebastian Huber > wrote: > On 05/05/2020 07:41, Chris Johns wrote: > >> On 5/5/20 3:34 pm, Sebastian Huber wrote: >> >> What does `os.uname()` return? > > In the msys shell: > > $ python > Python 3.7.4 (default, Jul 11 2019, 09:35:14) > [GCC 9.1.0] on msys >

Re: Build Linux: FAILED devel/qemu4 on x86_64-linux-gnu (qemu-v4.1.0-x86_64-linux-gnu-1)

2020-05-03 Thread Anders Montonen
On 3 May 2020, at 8:37, Joel Sherrill wrote: > > This appears to fail from the m2005 release snapshot but not when building > git master. This is on CentOS 7. > > Hopefully there is something useful in what was mailed out. If not, I'll dig > into the saved stuff on the machine tomorrow. >

[PATCH 2/3] sb/linux.py: Workaround for Python >= 3.8

2020-04-27 Thread Anders Montonen
/work/rtems/rsb/source-builder/sb/linux.py", line 60, in load distro = platform.dist()[0] AttributeError: module 'platform' has no attribute 'dist' Signed-off-by: Anders Montonen --- source-builder/sb/linux.py | 18 +++--- 1 file changed, 11 insertions(+), 7 deletions(-)

[PATCH 3/3] source-builder/config/gdb-common-1.cfg: Fix building with Python 3.8

2020-04-27 Thread Anders Montonen
Signed-off-by: Anders Montonen --- source-builder/config/gdb-common-1.cfg | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/source-builder/config/gdb-common-1.cfg b/source-builder/config/gdb-common-1.cfg index 5847f11..397d44d 100644 --- a/source-builder/config/gdb-common-1

[PATCH 0/3] Source Builder: Fixes for Python 3.8

2020-04-27 Thread Anders Montonen
versions, but I have not actually tested. I'm not sure if the Linux distro check fix is the most elegant, but I think the whole thing should be changed to check if the required executables are found in the runtime path, instead of assuming some hard-coded locations. Anders Montonen (3): sb: Fix Python

[PATCH 1/3] sb: Fix Python literal comparison warnings

2020-04-27 Thread Anders Montonen
Fixes: SyntaxWarning: "is" with a literal. Did you mean "=="? Signed-off-by: Anders Montonen --- source-builder/sb/config.py | 2 +- source-builder/sb/macros.py | 58 ++--- 2 files changed, 30 insertions(+), 30 deletions(-) diff --git