This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Determining if the include file dirent.h exists failed with the following output: | |
Change Dir: C:/Users/mhanu/.conan/data/pcre/8.45/_/_/build/752948ce548bd345ffbb13d47bc67547d791cc18/build_subfolder/CMakeFiles/CMakeTmp | |
Run Build Command(s):C:/Program Files (x86)/Microsoft Visual Studio/2017/BuildTools/MSBuild/15.0/Bin/MSBuild.exe cmTC_8acca.vcxproj /p:Configuration=Debug /p:Platform=Win32 /p:VisualStudioVersion=15.0 /v:m && Microsoft (R) Build Engine 15.9.21+g9802d43bc3 dla platformy .NET Framework | |
Copyright (C) Microsoft Corporation. Wszelkie prawa zastrzeżone. | |
Microsoft (R) Kompilator optymalizujący C/C++, wersja 19.16.27045 dla architektury x86 | |
Copyright (C) Microsoft Corporation. Wszystkie prawa zastrzeżone. | |
cl /c /Zi /W3 /WX- /diagnostics:classic /MP1 /Od /Ob0 /Oy- /D _MBCS /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_8acca.dir\Debug\\" /Fd"cmTC_8acca.dir\Debug\vc141.pdb" /Gd /TC /analyze- /errorReport:queue C:\Use |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
...found 19 targets... | |
...updating 11 targets... | |
msvc.write-setup-script C:\.conan\c475c2\1\boost\bin.v2\standalone\msvc\msvc-14.1\msvc-setup.bat | |
compile-c-c++ C:\.conan\c475c2\1\boost\architecture\msvc-14.1\dbg\thrd-mlt\32.obj | |
cl : Wiersz polecenia warning D9002 : ignorowanie nieznanej opcji "-fPIC" | |
32.cpp | |
...updated 12 targets... | |
...found 2 targets... | |
...updating 1 target... | |
compile-c-c++ C:\.conan\c475c2\1\boost\architecture\msvc-14.1\dbg\thrd-mlt\arm.obj |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdlib.h> | |
#include <stdio.h> | |
#include <sys/types.h> | |
#include <sys/stat.h> | |
#include <fcntl.h> | |
#include <errno.h> | |
#include <string.h> | |
#include <linux/serial.h> | |
#include <termios.h> | |
#include <unistd.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <map> | |
#include <stdexcept> | |
#include <string> | |
// clang-format off | |
static std::map<char, unsigned int> roman_map = { | |
{'I', 1}, | |
{'V', 5}, | |
{'X', 10}, |