[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: 32bit GS on 64bit Win rebuild base from src
From: |
Giah de Barag |
Subject: |
Re: 32bit GS on 64bit Win rebuild base from src |
Date: |
Sun, 21 Aug 2016 08:12:03 -0400 |
Can anyone on MSYS2 replicate this recipe for crashing GDB?
1. Install MSYS2. Update pacman.
2. Install packages and build GS (modules/scripts).
3. Build the program below and run gdb on it.
gdb commands:
b main
r
tbreak 10 # in front of the return
c
print [ud objectForKey:@"foo”] # GDB crashes
program:
#import <Foundation/Foundation.h>
int main( int argc, const char *argv[] )
{
id pool = [NSAutoreleasePool new];
id ud = [NSUserDefaults standardUserDefaults];
id foo = [ud objectForKey:@"foo"];
printf("foo = %s\n", foo ? [foo cString] : "missing"); fflush(stdout);
[pool release];
#line 10
return 0;
}
Note:
Using old MSYS GNUstep installed from Installers, it crashes right on “b main”
(as previously reported) and if update all packages with mingw-get and rebuild
GNUstep, it crashes as above.
- Re: 32bit GS on 64bit Win rebuild base from src, (continued)
- Re: 32bit GS on 64bit Win rebuild base from src, Riccardo Mottola, 2016/08/14
- Re: 32bit GS on 64bit Win rebuild base from src, Adam Fedor, 2016/08/15
- Re: 32bit GS on 64bit Win rebuild base from src, Giah de Barag, 2016/08/14
- Re: 32bit GS on 64bit Win rebuild base from src, Giah de Barag, 2016/08/14
- Re: 32bit GS on 64bit Win rebuild base from src, Giah de Barag, 2016/08/14
- Re: 32bit GS on 64bit Win rebuild base from src, Adam Fedor, 2016/08/15
- Re: 32bit GS on 64bit Win rebuild base from src, Giah de Barag, 2016/08/15
- Re: 32bit GS on 64bit Win rebuild base from src, Adam Fedor, 2016/08/16
- Re: 32bit GS on 64bit Win rebuild base from src,
Giah de Barag <=
- Re: 32bit GS on 64bit Win rebuild base from src, Fred Kiefer, 2016/08/21
- Re: 32bit GS on 64bit Win rebuild base from src, Giah de Barag, 2016/08/21
- Re: 32bit GS on 64bit Win rebuild base from src, Giah de Barag, 2016/08/21
- Re: 32bit GS on 64bit Win rebuild base from src, Giah de Barag, 2016/08/21
- Re: 32bit GS on 64bit Win rebuild base from src, Ivan Vučica, 2016/08/21
- Re: 32bit GS on 64bit Win rebuild base from src, Giah de Barag, 2016/08/22
- Re: 32bit GS on 64bit Win rebuild base from src, Giah de Barag, 2016/08/22
- Re: 32bit GS on 64bit Win rebuild base from src, Giah de Barag, 2016/08/22