Using back tracking in CVS I found the reason why CVS sources not compiled with configure --enable-debugger configuration (reported by Brendan).

Again it is andom change which cause to debugger not to compile ;(
This is definitelly GCC bug !
This commit is contained in:
Stanislav Shwartsman 2006-01-17 07:58:11 +00:00
parent d4e4499684
commit c92aba3776
2 changed files with 12 additions and 8 deletions

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: cpu.cc,v 1.120 2006-01-05 21:39:11 sshwarts Exp $
// $Id: cpu.cc,v 1.121 2006-01-17 07:58:11 sshwarts Exp $
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2001 MandrakeSoft S.A.
@ -31,6 +31,16 @@
#include "iodev/iodev.h"
#define LOG_THIS BX_CPU_THIS_PTR
#if BX_PROVIDE_CPU_MEMORY==1
#if BX_ADDRESS_SPACES==1
BOCHSAPI BX_MEM_C bx_mem;
#else
BOCHSAPI BX_MEM_C bx_mem_array[BX_ADDRESS_SPACES];
#endif
#endif
#if BX_SUPPORT_ICACHE
bxPageWriteStampTable pageWriteStampTable;

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: main.cc,v 1.303 2006-01-15 19:35:38 sshwarts Exp $
// $Id: main.cc,v 1.304 2006-01-17 07:58:11 sshwarts Exp $
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2002 MandrakeSoft S.A.
@ -101,12 +101,6 @@ BOCHSAPI BX_CPU_C bx_cpu;
BOCHSAPI BX_CPU_C *bx_cpu_array[BX_SMP_PROCESSORS];
#endif
#if BX_ADDRESS_SPACES==1
BOCHSAPI BX_MEM_C bx_mem;
#else
BOCHSAPI BX_MEM_C bx_mem_array[BX_ADDRESS_SPACES];
#endif
char *bochsrc_filename = NULL;
void bx_print_header ()