Re: Error with gnumach compilation

2019-02-14 Thread Samuel Thibault
Almudena Garcia, le ven. 15 févr. 2019 01:48:36 +0100, a ecrit: > ../i386/i386/cswitch.S:42: Error: carácter inválido '(' en el mnemónico This looks like the CPU_NUMBER macro missing being defined to put the CPU number into eax. Samuel

Re: I would like to contribute with a new favicon for the website

2019-02-14 Thread Samuel Thibault
jbra...@dismail.de, le jeu. 14 févr. 2019 18:32:49 +, a ecrit: > Feel free to attach the image, and I'll make the commit for you. (please make sure of the licensing :) )

Re: Query on ifconfig

2019-02-14 Thread Samuel Thibault
Vinay M, le jeu. 14 févr. 2019 23:12:07 +0530, a ecrit: > I tried lot of googling but still not able to figure it out.  > > Here is the issue details :  > Not able to set lo0 in the latest version of "ifconfig" > > command$         sudo ifconfig lo0 alias 10.0.2.15 up > Getting error -> 

Re: Query on ifconfig

2019-02-14 Thread Samuel Thibault
Almudena Garcia, le jeu. 14 févr. 2019 21:14:51 +0100, a ecrit: > How did you install ifconfig in GNU/Hurd? > > This is not available in Debian GNU/Hurd repositories It is provided by inetutils-tools Samuel

Re: I would like to contribute with a new favicon for the website

2019-02-14 Thread jbranso
Feel free to attach the image, and I'll make the commit for you. February 13, 2019 9:20 PM, "Muto" wrote: > Hello, bug-hurd mailing list readers, > > I have created a new favicon.ico, which has a cleaner design and a > smaller filesize than the current one (766 bytes as opposed to 1.1kb). > It

Re: Query on ifconfig

2019-02-14 Thread Almudena Garcia
How did you install ifconfig in GNU/Hurd? This is not available in Debian GNU/Hurd repositories El jue., 14 feb. 2019 a las 19:37, Samuel Thibault () escribió: > Vinay M, le jeu. 14 févr. 2019 23:12:07 +0530, a ecrit: > > I tried lot of googling but still not able to figure it out. > > > > Here

Re: [pushed][PATCH v3 1/4] Extended-remote follow exec

2019-02-14 Thread Tom Tromey
> "Thomas" == Thomas Schwinge writes: Thomas> + struct cleanup *old_chain = make_cleanup (xfree, pathname); Please don't add new cleanups to gdb. We're in the process of removing them all. Instead you can use gdb::unique_xmalloc_ptr, or std::string, or a std::vector of some

Query on ifconfig

2019-02-14 Thread Vinay M
Hi Hurd, I tried lot of googling but still not able to figure it out. Here is the issue details : Not able to set lo0 in the latest version of "ifconfig" command$ sudo ifconfig lo0 alias 10.0.2.15 up Getting error -> ifconfig: invalid arguments ifconfig -V ifconfig (GNU inetutils)

[gdb, hurd] Adjust to Hurd "proc" interface changes (was: proc_task2proc prototype change)

2019-02-14 Thread Thomas Schwinge
Hi! On Tue, 06 Jun 2017 08:49:16 +0200, Justus Winter wrote: > David Michael writes: > > On Mon, Jun 5, 2017 at 7:40 AM, Justus Winter wrote: > >> [...] > > The reply > > functions still have mach_port_poly_t, though, and they are used by > > GDB. Is that correct? > > Oh wow, a server for

Re: [pushed][PATCH v3 1/4] Extended-remote follow exec

2019-02-14 Thread Thomas Schwinge
Hi! On Fri, 17 Feb 2017 16:45:01 +, Pedro Alves wrote: > Only noticed this patch now. Heh, and I've only now gotten back to completing this. ;-) > > On GNU/Hurd, there is no "#define PATH_MAX", so this fails to build. > > (I'm aware that there is other PATH_MAX usage in GDB sources, which

Re: Query on ifconfig

2019-02-14 Thread Samuel Thibault
Almudena Garcia, le jeu. 14 févr. 2019 21:23:59 +0100, a ecrit: > I have installed this package in my Debian GNU/Hurd installation, but ifconfig > appears as "command not found", even as sudo Use inetutils-ifconfig. Samuel

Re: Query on ifconfig

2019-02-14 Thread Samuel Thibault
Almudena Garcia, le jeu. 14 févr. 2019 22:01:55 +0100, a ecrit: > > > I have installed this package in my Debian GNU/Hurd installation, but > ifconfig > > appears as "command not found", even as sudo > > Use inetutils-ifconfig. > > This package don't exists in my

Re: Query on ifconfig

2019-02-14 Thread Almudena Garcia
Thanks!! Now I know the command El jue., 14 feb. 2019 a las 22:10, Samuel Thibault () escribió: > Almudena Garcia, le jeu. 14 févr. 2019 22:01:55 +0100, a ecrit: > > > > > I have installed this package in my Debian GNU/Hurd installation, > but > > ifconfig > > > appears as "command

Re: Query on ifconfig

2019-02-14 Thread Almudena Garcia
I have installed this package in my Debian GNU/Hurd installation, but ifconfig appears as "command not found", even as sudo El jue., 14 feb. 2019 a las 21:19, Samuel Thibault () escribió: > Almudena Garcia, le jeu. 14 févr. 2019 21:14:51 +0100, a ecrit: > > How did you install ifconfig in

Error with gnumach compilation

2019-02-14 Thread Almudena Garcia
Hi all: I'm doing some experiments with my GNUMach SMP fork, and now I'm trying to recover old imps files. But, when I try to compile this, It shows an assembly error in cswitch.S (attach file) ../i386/i386/cswitch.S: Mensajes del ensamblador: ../i386/i386/cswitch.S:42: Error: carácter inválido

Re: [pushed][PATCH v3 1/4] Extended-remote follow exec

2019-02-14 Thread Tom Tromey
> "Tom" == Tom Tromey writes: > "Thomas" == Thomas Schwinge writes: Thomas> + struct cleanup *old_chain = make_cleanup (xfree, pathname); Tom> Please don't add new cleanups to gdb. Tom> We're in the process of removing them all. Tom> Instead you can use