Page 1 of 1

[SOLVED] PrBoom crashes

Posted: 3. Sep 2014, 18:42
by zAchAry

Code: Select all

$ prboom

prboom v2.5.0 (http://prboom.sourceforge.net/)
I_SetAffinityMask: manual affinity mask is 1
M_LoadDefaults: Load system defaults.
 default file: /home/HOSTNAME/.prboom/prboom.cfg
 found /usr/share/prboom/doom2.wad
IWAD found: /usr/share/prboom/doom2.wad
PrBoom (built Mar 17 2011), playing: DOOM 2: Hell on Earth
PrBoom is released under the GNU General Public license v2.0.
You are welcome to redistribute it under certain conditions.
It comes with ABSOLUTELY NO WARRANTY. See the file COPYING for details.
V_Init: allocate screens.
 found /usr/share/prboom/prboom.wad
D_InitNetGame: Checking for network game.
W_Init: Init WADfiles.
 adding /usr/share/prboom/doom2.wad
 adding /usr/share/prboom/prboom.wad
W_InitCache

M_Init: Init miscellaneous info.
R_Init: Init DOOM refresh daemon - 
R_LoadTrigTables: Endianness...ok.
R_InitData: Textures Flats Sprites 
R_Init: R_InitPlanes R_InitLightTables R_InitSkyMap R_InitTranslationsTables R_InitPatches 
P_Init: Init Playloop state.
I_Init: Setting up machine state.
I_InitSound:  configured audio device with 1024 samples/slice
I_InitSound: sound module ready
S_Init: Setting up sound.
S_Init: default sfx volume 8
HU_Init: Setting up heads up display.
I_InitGraphics: 640x480
I_UpdateVideoMode: 640x480 (fullscreen)
V_InitMode: using 8 bit video mode
I_SetRes: Using resolution 640x480
I_UpdateVideoMode: 0xe0000000, SDL buffer, direct access
ST_Init: Init status bar.
Couldn't load MIDI from /tmp/prboom-music-BZHWs1: /etc/timidity.cfg: line 3: syntax error

Couldn't load MIDI from /tmp/prboom-music-BZHWs1: /etc/timidity.cfg: line 3: syntax error

P_GetNodesVersion: using normal BSP nodes
I_SignalHandler: Exiting on signal: signal 8
I_ShutdownMusic: removing /tmp/prboom-music-BZHWs1
I_ShutdownSound: 

Code: Select all

$ prboom -nosound -nosfx -nomusic 

prboom v2.5.0 (http://prboom.sourceforge.net/)
I_SetAffinityMask: manual affinity mask is 1
M_LoadDefaults: Load system defaults.
 default file: /home/HOSTNAME/.prboom/prboom.cfg
 found /usr/share/prboom/doom2.wad
IWAD found: /usr/share/prboom/doom2.wad
PrBoom (built Mar 17 2011), playing: DOOM 2: Hell on Earth
PrBoom is released under the GNU General Public license v2.0.
You are welcome to redistribute it under certain conditions.
It comes with ABSOLUTELY NO WARRANTY. See the file COPYING for details.
V_Init: allocate screens.
 found /usr/share/prboom/prboom.wad
D_InitNetGame: Checking for network game.
W_Init: Init WADfiles.
 adding /usr/share/prboom/doom2.wad
 adding /usr/share/prboom/prboom.wad
W_InitCache

M_Init: Init miscellaneous info.
R_Init: Init DOOM refresh daemon - 
R_LoadTrigTables: Endianness...ok.
R_InitData: Textures Flats Sprites 
R_Init: R_InitPlanes R_InitLightTables R_InitSkyMap R_InitTranslationsTables R_InitPatches 
P_Init: Init Playloop state.
I_Init: Setting up machine state.
S_Init: Setting up sound.
HU_Init: Setting up heads up display.
I_InitGraphics: 640x480
I_UpdateVideoMode: 640x480 (fullscreen)
V_InitMode: using 8 bit video mode
I_SetRes: Using resolution 640x480
I_UpdateVideoMode: 0xe0000000, SDL buffer, direct access
ST_Init: Init status bar.
P_GetNodesVersion: using normal BSP nodes
I_SignalHandler: Exiting on signal: signal 8

Re: PrBoom crashes

Posted: 3. Sep 2014, 22:17
by gapan
Works fine here, on both 32bits and 64bits, after a fresh installation.

Re: PrBoom crashes

Posted: 3. Sep 2014, 22:20
by laprjns
It works here on my 64 bit system. This is your problem:

Code: Select all

I_SignalHandler: Exiting on signal: signal 8
A little googling of that that error and you get these hits.
https://www.google.com/search?q=prboom+ ... =firefox-a
Looks like it's a problem with i386 systems only. The package needs to be compiled with the --disable-i386-asm option

Re: PrBoom crashes

Posted: 4. Sep 2014, 12:22
by gapan
zachary, what CPU are you trying it on?

Re: PrBoom crashes

Posted: 6. Sep 2014, 09:12
by zAchAry

Code: Select all

$ uname -a
Linux darkstar 3.10.17-smp #2 SMP Wed Oct 23 17:13:14 CDT 2013 i686 Intel(R) Celeron(R) M CPU        430  @ 1.73GHz GenuineIntel GNU/Linux

Re: PrBoom crashes

Posted: 6. Sep 2014, 11:43
by gapan
OK, I have rebuilt the prboom package with that option. Thanks laprjns. You should get it as soon as your mirror syncs.

Re: [SOLVED] PrBoom crashes

Posted: 7. Sep 2014, 23:27
by zAchAry
Thank you.