[arch-general] Bochs need gdb-stub support, right?

goodmenzy at gmail.com goodmenzy at gmail.com
Thu Sep 8 09:48:26 EDT 2011


Hi,

   I think bochs should add --enable-gdb-stub option when configuring.
I build the modified PKGBUILD, It works.

   The pkgbuild script is in the attachment.

Kevin,  
   Could you please adopt my adives? 
-------------- next part --------------
# $Id: PKGBUILD 127309 2011-06-13 01:13:14Z kevin $
#Contributor: Tom Newsom <Jeepster at gmx.co.uk>
# Maintainer: Kevin Piche <kevin at archlinux.org>

pkgname=bochs
pkgver=2.4.6
pkgrel=1
pkgdesc="A portable x86 PC emulation software package"
arch=('i686' 'x86_64')
license=('LGPL')
url="http://bochs.sourceforge.net/"
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz)
depends=('gcc-libs' 'libxrandr')
sha256sums=('689dcc5fccfd70c8340a54986f0cb9c2824009ed602718802868333da9ac53b9')

build() {
  cd ${srcdir}/${pkgname}-${pkgver}
  ./configure --prefix=/usr --enable-vbe --without-wx --enable-cpu-level=6 \
              --enable-fpu --enable-3dnow \
	      --enable-gdb-stub
  make
}

package() {
  cd ${srcdir}/${pkgname}-${pkgver}
  make prefix=${pkgdir}/usr install
  install -D -m 644 .bochsrc ${pkgdir}/etc/bochsrc-sample.txt
}


More information about the arch-general mailing list