You are not logged in.
Pages: 1
Here's what I get when I do a makepkg ...
if g++ -DHAVE_CONFIG_H -I. -I. -I../../src/include -I./../include -I/usr/include -I/usr/include -I/usr/lib/wx/include/gtk2-unicode-release-2.8 -I/usr/include/wx-2.8 -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -D__WXGTK__ -march=i686 -mtune=generic -O2 -pipe -Wall -g -fexceptions -MT libengine_a-ControlSocket.o -MD -MP -MF ".deps/libengine_a-ControlSocket.Tpo" -c -o libengine_a-ControlSocket.o `test -f 'ControlSocket.cpp' || echo './'`ControlSocket.cpp; \
then mv -f ".deps/libengine_a-ControlSocket.Tpo" ".deps/libengine_a-ControlSocket.Po"; else rm -f ".deps/libengine_a-ControlSocket.Tpo"; exit 1; fi
ControlSocket.cpp:972: internal compiler error: Segmentation fault
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://gcc.gnu.org/bugs.html> for instructions.
make[2]: *** [libengine_a-ControlSocket.o] Error 1
make[2]: Leaving directory `/home/max/filezilla/src/filezilla-3.0.0-beta8/src/engine'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/max/filezilla/src/filezilla-3.0.0-beta8/src'
make: *** [all-recursive] Error 1
==> ERROR: Build Failed. Aborting...
[max@myhost filezilla]$
How can I fix this?
Offline
Any idea? I'm using this program for our business and I need to get some kind of sftp to work.
Offline
Which pkgbuild are you using to build ?
The 3.0.0beta8 is in community.
this comment might help :
Comment by: FrankTM on 20070602 [12:45:32]
Beta 9 builds fine, too.However it depends on wxGTK>=2.8.4, which should be in extra but doesn't currently have a maintainer (http://archlinux.org/packages/823/).
PKGBUILD's I've used:
http://pastebin.archlinux.org/3733
http://pastebin.archlinux.org/3734
Last edited by Lone_Wolf (2007-07-16 20:24:46)
Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.
clean chroot building not flexible enough ?
Try clean chroot manager by graysky
Offline
This worked for me:
# $Id: PKGBUILD,v 1.27 2007/03/13 17:48:30 jgc Exp $
# Maintainer: tobias <tobias@archlinux.org>
# Original Contributor: Tom Newsom <Jeepster@gmx.co.uk>
# New Version - Contributor: Bob Finch <w9ya@arrl.net>
# with help from J. Santiago Hirschfeld <jsantiagoh@yahoo.com.ar> aka Angelus
pkgname=wxgtk
pkgver=2.8.4
force=y
pkgrel=1
pkgdesc="wxGTK - GTK+ implementation of wxWidgets API for GUI"
arch=(i686 x86_64)
license=('LGPL')
depends=('gtk2>=2.10.9' 'mesa')
source=(http://heanet.dl.sourceforge.net/wxwindows/wxGTK-2.8.4.tar.bz2)
url="http://wxwidgets.org"
build() {
cd ${startdir}/src/wxGTK-$pkgver
autoconf
./configure --prefix=/usr --with-gtk=2 --with-opengl --enable-unicode \
--without-gnomeprint --disable-optimize || return 1
make || return 1
make -C locale allmo
make DESTDIR=${startdir}/pkg install || return 1
cd contrib/src
make || return 1
make DESTDIR=${startdir}/pkg install || return 1
}
# Contributor: Alexander Fehr <pizzapunk@gmail.com>
pkgname=filezilla
pkgver=3.0.0beta11
pkgrel=1
pkgdesc="Fast and reliable FTP client"
arch=('i686')
url="http://filezilla.sourceforge.net/"
license=('GPL')
depends=('wxgtk' 'libidn')
source=(http://dl.sourceforge.net/$pkgname/FileZilla_3.0.0-beta11_src.tar.bz2 \
filezilla.desktop)
build() {
cd $startdir/src/$pkgname-3.0.0-beta11
./configure --prefix=/usr
make || return 1
make DESTDIR=$startdir/pkg install
install -D -m644 src/interface/resources/filezilla.png \
$startdir/pkg/usr/share/pixmaps/filezilla.png
install -D -m644 ../filezilla.desktop \
$startdir/pkg/usr/share/applications/filezilla.desktop
}
It's BETA11
Last edited by jond (2007-07-27 10:18:54)
Just say yes
Offline
/home/max/wx/src/wxGTK-2.8.4/bk-deps g++ -c -o basedll_fileconf.o -I.pch/wxprec_basedll -D__WXGTK__ -I./src/regex -DwxUSE_GUI=0 -DWXMAKINGDLL_BASE -DwxUSE_BASE=1 -fPIC -DPIC -DWX_PRECOMP -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/home/max/wx/src/wxGTK-2.8.4/lib/wx/include/gtk2-unicode-release-2.8 -I./include -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12 -pthread -Wall -Wundef -Wno-ctor-dtor-privacy -O2 -fno-strict-aliasing -march=i686 -mtune=generic -O2 -pipe ./src/common/fileconf.cpp
./src/common/fileconf.cpp: In member function 'wxFileConfigLineList* wxFileConfigGroup::GetGroupLine()':
./src/common/fileconf.cpp:1445: internal compiler error: Segmentation fault
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://gcc.gnu.org/bugs.html> for instructions.
make: *** [basedll_fileconf.o] Error 1
==> ERROR: Build Failed. Aborting...
when compiling wxgtk
Offline
Pages: 1