1. Mar 04, 2023
    • Steve Bennett's avatar
      Add support for ./configure --disable-introspection · 900e738c
      Steve Bennett authored
      
      
      Sometimes it can be useful to provide an embedded interpreter
      where introspection is not permitted.
      This includes:
      
      - info commands, procs, channels: only allow exact match, not glob pattern
      - info frame: don't include cmd and proc in the returned dict
      - info level: only return the command name, not the command arguments
      - info body, args, statics: do not allow these to be called
      
      Signed-off-by: default avatarSteve Bennett <steveb@workware.net.au>
      900e738c
  2. Mar 02, 2023
  3. Feb 25, 2023
  4. Feb 24, 2023
  5. Feb 13, 2023
  6. Feb 10, 2023
  7. Feb 09, 2023
  8. Feb 06, 2023
  9. Feb 03, 2023
  10. Feb 01, 2023
    • Steve Bennett's avatar
      build: fix a minor warning on macosx · 46b109be
      Steve Bennett authored
      
      
      Signed-off-by: default avatarSteve Bennett <steveb@workware.net.au>
      46b109be
    • prpr19xx's avatar
      Silence compiler warning · 773fd6ca
      prpr19xx authored
      The Appveyor build generates this otherwise:
      
      In function 'Jim_WhileCoreCommand',
          inlined from 'Jim_WhileCoreCommand' at jim.c:12096:12:
      jim.c:12109:12: warning: 'boolean' may be used uninitialized [-Wmaybe-uninitialized]
      12109 |         if (!boolean)
            |            ^
      jim.c: In function 'Jim_WhileCoreCommand':
      jim.c:12105:13: note: 'boolean' was declared here
      12105 |         int boolean, retval;
            |             ^~~~~~~
      773fd6ca
  11. Jan 31, 2023
  12. Jan 16, 2023
    • Antonio Borneo's avatar
      Drop the dummy file configure.ac · 540ac1d6
      Antonio Borneo authored
      Jimtcl dropped the file configure.ac with commit 2ffa2eee
      ("Remove obsolete configure.ac") in 2011, but this caused a build
      failure when jimtcl is used as submodule by OpenOCD.
      Instead of fixing the obsoleted path in OpenOCD's configure.ac, a
      patch to add a dummy configure.ac was merged in jimtcl with commit
      142edb4e ("Re-add a dummy configure.ac for automake").
      
      The resulting setup still has issues, as running 'autoremake -f'
      in OpenOCD folder causes autoconf to replace jimtcl configure file
      with an incorrect file generated from the dummy configure.ac .
      
      OpenOCD release v0.12.0 includes a fix that makes useless the
      dummy configure.ac in jimtcl: https://review.openocd.org/7437/
      
      
      ("configure.ac: fix check for jimtcl submodule").
      
      Drop the dummy configure.ac .
      
      Signed-off-by: default avatarAntonio Borneo <borneo.antonio@gmail.com>
      540ac1d6
  13. Jan 06, 2023