Evgenii Legotckoi
Evgenii LegotckoiJuly 28, 2016, 11:40 a.m.

Qt/C++ - Lesson 056. Connecting the Boost library in Qt for MinGW and MSVC compilers

Initial acquaintance with Boost on Windows start to build precompiled libraries and connecting them to the project on Qt. This code will use one of the Hello World-s from the Boost documentation, namely the installation locale using boost.

Building Boost for MinGW

First, download the latest version of Boost (as of this writing is version 1.61) and unpack the archive into a folder. In my case, the archive is unpacked in the following path:

D:\EVILEG\boost_1_61_0

Then open the console and go to the folder. In this folder there is a batch file to build bootstrap.bat bjam tool, which is designed to control compilation target libraries under the compiler.

To build this tool for MinGW run the following command:

bootstrap.bat gcc

Once the tool is assembled perform the assembly of all the necessary libraries with the following command:

b2 toolset=gcc link=shared --prefix=boost_mingw_530 install  // , where
    // toolset  - this tool, which will be collected in the library, 
    //            ie the type of compiler, which you will collect the library
    // link     - this type of library, in this case the shared - dynamic
    // --prefix - folder which will be copied the header files and libraries compiled
    //            in my case D:\EVILEG\boost_1_61_0\boost_mingw_530

Then you can go about their business, because this process is not fast.


Note

Note that the compiler option, which will be collected by the library will be determined by what environment variables are registered in your operating system. That is, on what path is registered to the g ++ compiler in the PATH variable.

I have previous versions of Qt were prescribed way:

D:\Qt\5.6\mingw49_32\bin;
D:\Qt\Tools\mingw490_32\bin;

And, accordingly, the output I got a library for MinGW 4.9.2 compiler. Yes, I have not yet had time to remove the previous version of Qt 5.6 with MinGW 4.9.2. Needless to say, I have a project Qt5.7 with compiler MinGW 5.3.0 refused to be collected?

So after prescribing the right ways managed to collect the necessary libraries:

D:\Qt\5.7\mingw53_32\bin;
D:\Qt\Tools\mingw530_32\bin;

Building Boost for MSVC

The process is completely analogous to that for MinGW, but with a small difference in the commands.

bootstrap.bat vc12    // Пока использую MSVC 2013 Community
b2 toolset=msvc-12.0 link=shared --prefix=boost_msvc install

During assembly, there may be some errors which are also due in varying ways OS. For example like this:

"cl" не является внутренней или внешней командой ... и т.д.

It is treated by prescribing the ways to the compiler MSVC, for example:

D:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin;

Also, there can be problems that will not be the path to the header files of the standard library. What is expressed in bootstrap.log information file:

###
### Using 'vc12' toolset.
###

D:\EVILEG\boost_1_61_0\tools\build\src\engine>if exist bootstrap rd /S /Q bootstrap 

D:\EVILEG\boost_1_61_0\tools\build\src\engine>md bootstrap 

D:\EVILEG\boost_1_61_0\tools\build\src\engine>cl /nologo /RTC1 /Zi /MTd /Fobootstrap/ /Fdbootstrap/ -DNT -DYYDEBUG -wd4996 kernel32.lib advapi32.lib user32.lib /Febootstrap\jam0  command.c compile.c constants.c debug.c execcmd.c execnt.c filent.c frames.c function.c glob.c hash.c hdrmacro.c headers.c jam.c jambase.c jamgram.c lists.c make.c make1.c object.c option.c output.c parse.c pathnt.c pathsys.c regexp.c rules.c scan.c search.c subst.c timestamp.c variable.c modules.c strings.c filesys.c builtins.c md5.c class.c cwd.c w32_getreg.c native.c modules/set.c modules/path.c modules/regex.c modules/property-set.c modules/sequence.c modules/order.c 
command.c
d:\evileg\boost_1_61_0\tools\build\src\engine\jam.h(71) : fatal error C1034: ctype.h: no include path set
compile.c
d:\evileg\boost_1_61_0\tools\build\src\engine\jam.h(71) : fatal error C1034: ctype.h: no include path set
constants.c
debug.c
d:\evileg\boost_1_61_0\tools\build\src\engine\jam.h(71) : fatal error C1034: ctype.h: no include path set
execcmd.c
d:\evileg\boost_1_61_0\tools\build\src\engine\jam.h(71) : fatal error C1034: ctype.h: no include path set
execnt.c
d:\evileg\boost_1_61_0\tools\build\src\engine\jam.h(71) : fatal error C1034: ctype.h: no include path set
filent.c
d:\evileg\boost_1_61_0\tools\build\src\engine\jam.h(71) : fatal error C1034: ctype.h: no include path set
frames.c
d:\evileg\boost_1_61_0\tools\build\src\engine\jam.h(71) : fatal error C1034: ctype.h: no include path set
function.c
d:\evileg\boost_1_61_0\tools\build\src\engine\jam.h(71) : fatal error C1034: ctype.h: no include path set
glob.c
d:\evileg\boost_1_61_0\tools\build\src\engine\jam.h(71) : fatal error C1034: ctype.h: no include path set
hash.c

Also take some voodoo with paths, or even reinstall the MSVC, or you can go for the most simple way, that will save the nerve cells, and simply download the Boost precompiled libraries from the site.

Connecting Boost to Qt project

For the initial connection Boost prepare a simple console application that will display the time, date and even some information with installation locale via Boost.locale library.

The project will consist of only two files:

  1. QtBoostHello.pro
  2. main.cpp

QtBoostHello.pro

Depending on the compiler you are connecting the necessary header files and libraries:

  • INCLUDEPATH - connect the header files
  • LIBS - connection libraries
QT += core
QT -= gui

CONFIG += c++11

TARGET = QtBoostHello
CONFIG += console
CONFIG -= app_bundle

TEMPLATE = app

win32-g++ {
    INCLUDEPATH += D:/EVILEG/boost_1_61_0/boost_mingw_530/include/boost-1_61
    LIBS += -LD:/EVILEG/boost_1_61_0/boost_mingw_530/lib -llibboost_locale-mgw53-mt-1_61
} else:win32-msvc* {
    INCLUDEPATH += D:/EVILEG/boost_1_61_0/boost_msvc_2012/include/boost-1_61
    LIBS += -LD:/EVILEG/boost_1_61_0/boost_msvc_2012/lib -lboost_locale-vc120-mt-1_61
}

SOURCES += main.cpp

main.cpp

In the main function there is one of the classes from the Boost library - a generator. Deep will not dig, we also need to start the project. We note only that it is used to set the locale, as shown in the code.

Also, for this class uses a dynamic library. But it is not necessary for all functional library, part of the Boost - This template functions, which are fully defined in the header files.

#include <QCoreApplication>
#include <boost/locale.hpp>

using namespace boost::locale;
using namespace std;

int main(int argc, char *argv[])
{
    QCoreApplication a(argc, argv);

    generator gen;
    locale loc=gen("en_US.UTF-8");
    locale::global(loc);
    // Make it system global

    cout.imbue(loc);
    // Set as default locale for output

    cout <<format("Hello {1,date} at {1,time} we had run our first localization example") % time(0)
          <<endl;

    cout<<"This is how we show numbers in this locale "<<as::number << 103.34 <<endl;
    cout<<"This is how we show currency in this locale "<<as::currency << 103.34 <<endl;
    cout<<"This is typical date in the locale "<<as::date << std::time(0) <<endl;
    cout<<"This is typical time in the locale "<<as::time << std::time(0) <<endl;


    return a.exec();
}

At the output we get the result as in the image below. If you play with a specific locale, ie, instead of "en_US.UTF-8" write "ru_RU.UTF-8", you will notice that the date and time format will change, however, as currency.

We recommend hosting TIMEWEB
We recommend hosting TIMEWEB
Stable hosting, on which the social network EVILEG is located. For projects on Django we recommend VDS hosting.

Do you like it? Share on social networks!

D
  • Nov. 2, 2023, 3:41 a.m.

С CMake всё на много проще:
find_package(Boost)

Comments

Only authorized users can post comments.
Please, Log in or Sign up
E

C++ - Test 002. Constants

  • Result:41points,
  • Rating points-8
E

C++ - Test 001. The first program and data types

  • Result:80points,
  • Rating points4
E

C++ - Test 001. The first program and data types

  • Result:53points,
  • Rating points-4
Last comments
Evgenii Legotckoi
Evgenii LegotckoiDec. 3, 2023, 4:39 p.m.
Django - Lesson 059. Saving the selected language in user settings It is redirect from untranslated url to translated url. It is normal behavior for mutlilanguage web site based on the Django.
c
coder55Dec. 2, 2023, 1:34 a.m.
Django - Lesson 059. Saving the selected language in user settings It tries to do language translation in API views. That's why it sends or receives the same API request twice. Do you have any suggestions on this? Example: stripe webhook. "GET /warehouse/…
g
gr1047Nov. 12, 2023, 6:35 p.m.
Qt/C++ - Lesson 035. Downloading files via HTTP with QNetworkAccessManager Добрый день. Изучаю Qt на ваших уроках. Всё нормально работает на Linux. А под Win один раз запустилось, а сейчас вместо данных сайта получается ошибк "Unable to write". Куда копать, ума не…
D
DamirNov. 2, 2023, 10:41 a.m.
Qt/C++ - Lesson 056. Connecting the Boost library in Qt for MinGW and MSVC compilers С CMake всё на много проще: find_package(Boost)
Павел Дорофеев
Павел ДорофеевOct. 28, 2023, 9:48 p.m.
Как написать свой QTableView Итак начинаем писать свои виджеты на основе QAbstractItemView. А что так можно было?
Now discuss on the forum
BlinCT
BlinCTNov. 30, 2023, 5:18 p.m.
Сборка проекта Qt6 из под винды на удаленой машине Всем привет. Сталкнулся с такой странностью: надо собирать проект из под 10 винды на удаленой линуксовой машине, проект строится на QT6, но вот когда cmake генерит свой кеш то вылитает…
Evgenii Legotckoi
Evgenii LegotckoiNov. 19, 2023, 4:14 p.m.
CKEditor 5 и подсветка синтаксиса. Добрый день. Я устал разбираться с CKEditor и просто перешёл на использование самописного markdown редактора...
Виктор Калесников
Виктор КалесниковOct. 20, 2023, 11:29 a.m.
Контакты Android делал в далеком 2017г поэтому особенно ничего не подскажу. Это основные методы получения данных с андроида используя Qt. Там еще какоето колдунство с манифестом. Андроидом давно не занимаюс…
m
mihamuzOct. 18, 2023, 9:03 p.m.
Скачать Qt 6 Сработал следующий алгоритм. Инстолятор скачал используя это https://freevpnplanet.com/ru/ как расширение браузера. Потом установил это https://freevpnplanet.com/ru/ же на ПК и через инстолятор …

Follow us in social networks