Skip to content

Commit b4a7d1a

Browse files
committed
Add SUPPORT.rst file
1 parent 4e23dff commit b4a7d1a

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed

README.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Building Coriolis
4040

4141
To build Coriolis, ensure the following prerequisites are met:
4242

43-
* Python 2.7 or 3.
43+
* Python 3.
4444
* cmake.
4545
* boost.
4646
* bison & flex.
@@ -65,6 +65,7 @@ Then, build the tool: ::
6565

6666
ego@home:coriolis$ make install
6767

68+
If you encounter issues, please consult SUPPORT.rst for tips.
6869
Coriolis gets installed at the root of the following tree: ::
6970

7071
~/coriolis-2.x/<OS>.<DISTRIB>/Release.Shared/install/

SUPPORT.rst

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
2+
=================
3+
Help and tooltips
4+
=================
5+
6+
7+
Compilation errors
8+
==================
9+
10+
This section is here to help you with the build process, and help you fix dependency issues or workaround compilation errors if it happens on your distribution.
11+
12+
13+
RapidJson
14+
---------
15+
16+
Some versions of RapidJson do not build with newer compilers, while others build only with newer ones.
17+
The version provided in README.rst should work for older compilers. Otherwise, consider pulling a newer version.
18+
19+
Qt5
20+
---
21+
22+
To use Qt5, you should add the --qt5 option to the ccb.py line in Makefile.
23+
On some distributions, you may need to replace the lines in bootstrap/cmake_modules/FindBootstrap.cmake from ::
24+
find_package(Qt5Core REQUIRED)
25+
to ::
26+
find_package(Qt5 COMPONENTS REQUIRED Core)
27+

0 commit comments

Comments
 (0)