Skip to content

Instantly share code, notes, and snippets.

View hanusek's full-sized avatar

Michał Hanusek hanusek

View GitHub Profile
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
@hanusek
hanusek / config.log
Created December 7, 2021 19:47
conan config log
...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
@hanusek
hanusek / rs485_BBB_echo.c
Last active April 24, 2020 20:57
Beaglebone Black RS485 Echo
#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>
@hanusek
hanusek / number-converter_v1.h
Last active April 21, 2020 19:55
Wyzwanie - konwerter liczb
#include <map>
#include <stdexcept>
#include <string>
// clang-format off
static std::map<char, unsigned int> roman_map = {
{'I', 1},
{'V', 5},
{'X', 10},