Skip to content
Snippets Groups Projects
Commit 1af53081 authored by Recolic Keghart's avatar Recolic Keghart
Browse files

building problems

parent 15b93f57
No related branches found
No related tags found
No related merge requests found
CXX ?= g++ CXX ?= g++
CC ?= gcc CC ?= gcc
AR ?= ar AR ?= ar
CXXFLAGS = -O3 -std=c++1z -fPIC CXXFLAGS = -O3 -std=c++14 -fPIC
CFLAGS = CFLAGS =
ARFLAGS = rcs ARFLAGS = rcs
......
#include <rlib/log.hpp> //log_level_t #include <rlib/log.hpp> //log_level_t
#include <rlib/stream.hpp> #include <rlib/stream.hpp>
#include <sstream> #include <sstream>
#if (RLIB_CXX_STD >= 2017) && (RLIB_COMPILER_ID != CC_MSVC)
#warning library should not be compiled under C++17. Or The library won't work for c++14 users.
#endif
namespace rlib { namespace rlib {
namespace impl { namespace impl {
// If libr.cc is built under C++17, and other header files are included in C++14 project, // If libr.cc is built under C++17, and other header files are included in C++14 project,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment