FS#63077 - [cura] 4.1.0-2 segfaults at startup
Attached to Project:
Community Packages
Opened by Greg Darke (skunktrader) - Wednesday, 03 July 2019, 03:52 GMT
Last edited by Jelle van der Waa (jelly) - Tuesday, 06 August 2019, 16:03 GMT
Opened by Greg Darke (skunktrader) - Wednesday, 03 July 2019, 03:52 GMT
Last edited by Jelle van der Waa (jelly) - Tuesday, 06 August 2019, 16:03 GMT
|
Details
Description: I verified that cura started successfully when
I installed the most recent update on 15 Jun 2019 23:45:28
AEST. I'm guessing one of the qt updates since then has
broken it for me.
The stacktrace is: Current thread 0x00007f8e18ede680 (most recent call first): File "/usr/lib/python3.7/site-packages/UM/Qt/QtApplication.py", line 341 in exec_ File "/usr/lib/python3.7/site-packages/cura/CuraApplication.py", line 797 in run File "/usr/bin/cura", line 136 in <module> Segmentation fault (core dumped) I solicited confirmation on the BBS and at least one other user has confirmed same issue: https://bbs.archlinux.org/viewtopic.php?id=247454 Additional info: * cura 4.1.0-2 python 3.7.3-2 xfce / qt / nouveau fully up to date I did check through the upsteam bug reports at https://github.com/Ultimaker/Cura/issues but did not find anything that looked relevant. Steps to reproduce: Start cura The UI flashes briefly on the screen then crashes |
This task depends upon
Closed by Jelle van der Waa (jelly)
Tuesday, 06 August 2019, 16:03 GMT
Reason for closing: Fixed
Additional comments about closing: Fixed in updated uranmium
Tuesday, 06 August 2019, 16:03 GMT
Reason for closing: Fixed
Additional comments about closing: Fixed in updated uranmium
support
speed_layer_0
platform_adhesion
This is my logfile: https://pastebin.com/LN6xGhbY
And I've reported the issue upstream: https://github.com/Ultimaker/Cura/issues/6008
> The segfault for RockyTV is happening when the main window is loaded, not while the plug-ins are being loaded. Though granted, it's also complaining about missing dependencies during plug-in loading (libCharon and Zeroconf). Since it's happening while the main window is loading, it's most likely an issue with your version of Qt, i.e. not version 5.10 which we maintain.
I tried installing both python-libcharon and python-zeroconf and it still didn't work. Perhaps this is an issue with the current Qt version?
Either QT, or the open source video drivers are borked.
If Cura still crashes, you'll have to delete your Cura profile/cache too (great isn't it?). Profile data is stored in homedir/.cache, homedir/.config, homedir/.local/share.
# Maintainer: Jelle van der Waa <jelle@vdwaa.nl>
# Contributor: Grey Christoforo <first name [at] last name [dot] net>
pkgname=uranium
pkgver=4.1.0
pkgrel=2
pkgdesc="A Python framework for building Desktop applications."
url="https://github.com/Ultimaker/Uranium"
arch=('any')
license=('LGPL')
depends=('python' 'qt5-quickcontrols' 'qt5-quickcontrols2' 'pyqt5-common' 'python-pyqt5' 'python-numpy' 'arcus' 'python-shapely')
makedepends=('cmake')
source=("$pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/${pkgname}/archive/${pkgver}.tar.gz"
'https://patch-diff.githubusercontent.com/raw/Ultimaker/Uranium/pull/500.patch'
'https://patch-diff.githubusercontent.com/raw/Ultimaker/Uranium/pull/499.patch')
sha256sums=('72245dba1fb74236144ffbe59497ef495b87bb3bb2b1d7ffcadebe138824eed4'
'd2d8c9acccfc59f906bfefe07d1683d363c65ac162a60c494acdebea121d9527'
'77cebd3742276ef585c8f93e7b942478e22abe1622ad6c1f0d1bd17d439fa3a5')
prepare() {
cd Uranium-${pkgver}
sed -i 's,/dist-packages,.${PYTHON_VERSION_MINOR}/site-packages,g' CMakeLists.txt
patch -p1 <"$srcdir/499.patch"
patch -p1 <"$srcdir/500.patch"
}
build() {
cd Uranium-${pkgver}
mkdir -p build && cd build
cmake .. \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release
make
}
package() {
cd Uranium-${pkgver}/build
make DESTDIR="${pkgdir}" install
}
# vim:set ts=2 sw=2 et: