From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 36145 invoked by alias); 14 Oct 2019 12:59:24 -0000 Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner@cygwin.com Mail-Followup-To: cygwin@cygwin.com Received: (qmail 36133 invoked by uid 89); 14 Oct 2019 12:59:23 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-3.0 required=5.0 tests=AWL,BAYES_00,KAM_SHORT,RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.1 spammy=HOME, inglis, Spellstaker, spellstaker X-HELO: smtp-out-so.shaw.ca Received: from smtp-out-so.shaw.ca (HELO smtp-out-so.shaw.ca) (64.59.136.137) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 14 Oct 2019 12:59:22 +0000 Received: from [192.168.1.114] ([24.64.172.44]) by shaw.ca with ESMTP id JzwUiiaBMIhW9JzwWikOlT; Mon, 14 Oct 2019 06:59:20 -0600 Reply-To: Brian.Inglis@SystematicSw.ab.ca Subject: Re: Unable to register GDB Pretty Printers permanently. To: cygwin@cygwin.com References: From: Brian Inglis Openpgp: preference=signencrypt Message-ID: Date: Mon, 14 Oct 2019 12:59:00 -0000 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:60.0) Gecko/20100101 Thunderbird/60.9.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2019-10/txt/msg00075.txt.bz2 On 2019-10-14 04:32, Spellstaker wrote: > I recently installed cygwin and the pretty printers for strings and vectors > aren't registered by default like it is in mingw what should I do? Docs > online suggest registering in .gdbinit file in home directory I did put > that in home directory but to no avail I do get pretty printing when I > manually register it tho But it isn't persistent > > OS: Windows 10 > GDB: 8.2.1 > G++: 8.3.0 As documented under "$ info gdb Invoking Startup": "To display the list of init files loaded by gdb at startup, you can use 'gdb --help'." $ gdb --help ... At startup, GDB reads the following init files and executes their commands: For more information, type "help" from within GDB, or consult the GDB manual (available as on-line info or a printed manual). Report bugs to "". You can check the gdb configuration with: $ gdb --configuration This GDB was configured as follows: configure --host=x86_64-pc-cygwin --target=x86_64-pc-cygwin --with-auto-load-dir=$debugdir:$datadir/auto-load --with-auto-load-safe-path=$debugdir:$datadir/auto-load --with-expat --with-gdb-datadir=/usr/share/gdb (relocatable) --with-jit-reader-dir=/usr/lib/gdb (relocatable) --without-libunwind-ia64 --with-lzma --with-python=/usr (relocatable) --without-guile --with-separate-debug-dir=/usr/lib/debug (relocatable) --without-babeltrace ("Relocatable" means the directory can be moved with the GDB installation tree, and GDB will still find it.) $ gdb -q -iex 'show auto-load' -iex 'info auto-load' -iex q gdb-scripts: Auto-loading of canned sequences of commands scripts is on. local-gdbinit: Auto-loading of .gdbinit script from current directory is on. python-scripts: Auto-loading of Python scripts is on. safe-path: List of directories from which it is safe to auto-load files is $debugdir:$datadir/auto-load. scripts-directory: List of directories from which to load auto-loaded scripts is $debugdir:$datadir/auto-load. gdb-scripts: No auto-load scripts. local-gdbinit: Local .gdbinit file was not found. python-scripts: No auto-load scripts. $ l /usr/lib/debug/usr/ /usr/share/gdb/ /usr/lib/debug/usr/: bin/ sbin/ /usr/share/gdb/: python/ syscalls/ system-gdbinit/ So it looks as though Cygwin gdb is configured and setup to source only startup scripts from the current directory, but it may need to be or be added as a safe path for that to work; or you create directory /usr/share/gdb/auto-load or symlink that to a directory, and install startup scripts there; or create a gdb alias to define scripts directory/-ies and execute init commands or files of init commands with -iex and -ix: $ alias gdb="/usr/bin/gdb -d "$GDB_SCRIPTS_DIR" -iex "add-auto-load-safe-path $GDB_SCRIPTS_DIR" -ix $HOME/.gdbinit" As you are running test releases, you can provide feedback on this list to the Cygwin GDB maintainer about configuring, adding, or providing startup scripts, where they are available on the web, under what licence, in which project. -- Take care. Thanks, Brian Inglis, Calgary, Alberta, Canada This email may be disturbing to some readers as it contains too much technical detail. Reader discretion is advised. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple