Skip to content

Commit eee401c

Browse files
committed
better Linux start script
1 parent 431e290 commit eee401c

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

start-peb.sh

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
#! /bin/sh
2+
3+
# Sometimes the Qt libraries, that PEB depends on, are not available on PATH.
4+
# This script can start PEB with no Qt libraries on PATH,
5+
# if the following libraries are placed in a folder named 'qt'
6+
# inside the folder of PEB and this script:
7+
8+
# qt/libicudata.so.54
9+
# qt/libicui18n.so.54
10+
# qt/libicuuc.so.54
11+
# qt/libQt5Core.so.5
12+
# qt/libQt5DBus.so.5
13+
# qt/libQt5Gui.so.5
14+
# qt/libQt5Network.so.5
15+
# qt/libQt5OpenGL.so.5
16+
# qt/libQt5Positioning.so.5
17+
# qt/libQt5PrintSupport.so.5
18+
# qt/libQt5Qml.so.5
19+
# qt/libQt5Quick.so.5
20+
# qt/libQt5Sensors.so.5
21+
# qt/libQt5Sql.so.5
22+
# qt/libQt5WebChannel.so.5
23+
# qt/libQt5WebKit.so.5
24+
# qt/libQt5WebKitWidgets.so.5
25+
# qt/libQt5Widgets.so.5
26+
# qt/libQt5XcbQpa.so.5
27+
# qt/libqxcb.so
28+
29+
# This file list was created using the 'ldd' utility and a Qt5.5 build of PEB.
30+
31+
export LD_LIBRARY_PATH=$(pwd)/qt
32+
export QT_QPA_PLATFORM_PLUGIN_PATH=$(pwd)/qt
33+
./peb

0 commit comments

Comments
 (0)