abasel (OP)
Newbie
Offline
Activity: 15
Merit: 0
|
|
September 13, 2017, 06:02:01 PM |
|
I keep getting the following error: BDM Error! The scanng process interrupted unexpectedly. Armory will now shutdown, If the error persists, you will have to rebuild and rescan your database etc. When I then start I am forced to rebuild and scan the database which takes more than a day.
I am using Armory 0.93.3
Kind regards
|
|
|
|
goatpig
Moderator
Legendary
Offline
Activity: 3752
Merit: 1364
Armory Developer
|
|
September 13, 2017, 06:07:31 PM |
|
|
|
|
|
abasel (OP)
Newbie
Offline
Activity: 15
Merit: 0
|
|
September 14, 2017, 07:31:32 AM |
|
I am now trying to install Armory on Fedora. Not sure how I got it to work last time but now when I run ./configure it goes through the process and then returns checking for pyrcc4... yes checking for lrelease... no configure: error: missing lrelease in path, make sure qt4-linguist-tools is installed
I do have installed qt-devel but this does not seem to help.
|
|
|
|
|
abasel (OP)
Newbie
Offline
Activity: 15
Merit: 0
|
|
September 14, 2017, 08:50:48 AM |
|
Yes, already have those Package qt-devel-1:4.8.7-28.fc26.x86_64 is already installed, skipping. Package qt-doc-1:4.8.7-28.fc26.noarch is already installed, skipping. Package qt-creator-4.2.2-6.fc26.x86_64 is already installed, skipping. Dependencies resolved.
|
|
|
|
goatpig
Moderator
Legendary
Offline
Activity: 3752
Merit: 1364
Armory Developer
|
|
September 14, 2017, 09:42:10 AM |
|
You have to symlink lrelease-qt4 to lrelease for it to work on Fedora.
|
|
|
|
abasel (OP)
Newbie
Offline
Activity: 15
Merit: 0
|
|
September 14, 2017, 05:36:21 PM Last edit: September 14, 2017, 05:57:06 PM by abasel |
|
Sorry not sure how to do that. Could you give me some pointers? You have to symlink lrelease-qt4 to lrelease for it to work on Fedora.
I have the following files /usr/bin/lrelease-qt4 /usr/lib64/qt4/bin/lrelease /usr/lib64/qt4/bin/lrelease-qt4
I tried the following sudo ln -s /usr/bin/lrelease-qt4 lrelease
but that did not seem to work, Thanks
|
|
|
|
|
abasel (OP)
Newbie
Offline
Activity: 15
Merit: 0
|
|
September 15, 2017, 07:43:16 AM |
|
Is this what you mean? AC_CHECK_PROG([HAVE_LRELEASE], [lrelease-qt4], [yes], [no]) I tried the above but that did not help
|
|
|
|
goatpig
Moderator
Legendary
Offline
Activity: 3752
Merit: 1364
Armory Developer
|
|
September 15, 2017, 09:45:51 AM |
|
What error are you getting?
|
|
|
|
abasel (OP)
Newbie
Offline
Activity: 15
Merit: 0
|
|
September 15, 2017, 08:15:51 PM |
|
checking python extra linking flags... -Xlinker -export-dynamic checking consistency of all components of python development environment... yes checking python module: psutil... yes AX_SWIG_PYTHON_CPPFLAGS: -I/usr/include/python2.7 checking for pyrcc4... yes checking for lrelease... no configure: error: missing lrelease in path, make sure qt4-linguist-tools is installed
I have also tried after changing my path as follows export PATH=$PATH:/usr/lib/qt4/bin/
|
|
|
|
goatpig
Moderator
Legendary
Offline
Activity: 3752
Merit: 1364
Armory Developer
|
|
September 15, 2017, 08:39:18 PM |
|
type lrelease in the terminal, do you get anything? The binary test just does that really. Soft link lrelease to whatever you want at this point, or remove the line. It will fail the install at the end but the build will be fine.
|
|
|
|
abasel (OP)
Newbie
Offline
Activity: 15
Merit: 0
|
|
September 15, 2017, 08:43:42 PM |
|
For lrelease I get "command not found" but lrelease-qt4 runs
I am new at some of this so this might be a silly questions. Is it possible to create a link so that when lrelease is called, lrelease-qt4 runs of won't that work anyway?
|
|
|
|
goatpig
Moderator
Legendary
Offline
Activity: 3752
Merit: 1364
Armory Developer
|
|
September 15, 2017, 10:53:31 PM |
|
Is it possible to create a link so that when lrelease is called, lrelease-qt4 runs of won't that work anyway?
That's what a symbolic link is. Search that up (How to symlink a binary)
|
|
|
|
abasel (OP)
Newbie
Offline
Activity: 15
Merit: 0
|
|
September 15, 2017, 11:24:26 PM |
|
Thanks, the following did it sudo ln -s /usr/bin/lrelease-qt4 /usr/bin/lrelease
|
|
|
|
|