Re: [PATCH rtems-source-builder] rtems-mipstx39-gdb-head.bset: Add missing file
Looks good and thanks Chris On 18/11/2023 5:11 am, Joel Sherrill wrote: > This configuration file was missing for the mipstx39 gdb build for the > head/7 tools. > > Closes #4935. > --- > rtems/config/tools/rtems-mipstx39-gdb-head.bset | 7 +++ > 1 file changed, 7 insertions(+) > create mode 100644 rtems/config/tools/rtems-mipstx39-gdb-head.bset > > diff --git a/rtems/config/tools/rtems-mipstx39-gdb-head.bset > b/rtems/config/tools/rtems-mipstx39-gdb-head.bset > new file mode 100644 > index 000..252967c > --- /dev/null > +++ b/rtems/config/tools/rtems-mipstx39-gdb-head.bset > @@ -0,0 +1,7 @@ > +%define release 1 > +%define rtems_arch mips > +%define gdb-sim-options --enable-sim-hardware > +%define win32-gdb-disable-sim > +%define _target mipstx39-rtems%{rtems_version} > +devel/gmp-6.2.1 > +tools//rtems-gdb-head ___ devel mailing list devel@rtems.org http://lists.rtems.org/mailman/listinfo/devel
[PATCH] sb: Fix python re warning for invalid escape sequences
From: Chris Johns --- source-builder/sb/pkgconfig.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source-builder/sb/pkgconfig.py b/source-builder/sb/pkgconfig.py index 198ec80..bfe769f 100755 --- a/source-builder/sb/pkgconfig.py +++ b/source-builder/sb/pkgconfig.py @@ -90,7 +90,7 @@ class package(object): get_recursion = ['cflags', 'libs'] no_dup_flags = ['-I', '-l', '-L'] dual_opts = ['-D', '-U', '-I', '-l', '-L'] -lib_list_splitter = re.compile('[\s,]+') +lib_list_splitter = re.compile(r'[\s,]+') loaded_prefixes = None loaded = {} @@ -514,7 +514,7 @@ class package(object): return None s = '' if self.file_: -mre = re.compile('\$\{[^\}]+\}') +mre = re.compile(r'\$\{[^\}]+\}') s = self.fields[label.lower()] expanded = True tm = False -- 2.37.1 ___ devel mailing list devel@rtems.org http://lists.rtems.org/mailman/listinfo/devel