Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
S
spdlog
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
spdlog
Commits
03d9abe8
Commit
03d9abe8
authored
Nov 05, 2014
by
gabi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mingw support
parent
db633b8c
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
0 deletions
+33
-0
README.md
README.md
+1
-0
Makefile.mingw
example/Makefile.mingw
+32
-0
No files found.
README.md
View file @
03d9abe8
...
...
@@ -11,6 +11,7 @@ Just copy the files to your build tree and use a C++11 compiler
*
gcc 4.8.1 and above
*
clang 3.5
*
visual studio 2013
*
mingw with g++ 4.9.x
##Features
*
Very fast - performance is the primary goal (see becnhmarks below)
...
...
example/Makefile.mingw
0 → 100644
View file @
03d9abe8
CXX
=
g++
CXXFLAGS
=
-D_WIN32_WINNT
=
0x600
-march
=
native
-Wall
-Wextra
-Wshadow
-pedantic
-std
=
c++11
-pthread
-Wl
,--no-as-needed
-I
../include
CXX_RELEASE_FLAGS
=
-O3
CXX_DEBUG_FLAGS
=
-g
all
:
example bench
debug
:
example-debug bench-debug
example
:
example.cpp
$(CXX)
example.cpp
-o
example
$(CXXFLAGS)
$(CXX_RELEASE_FLAGS)
bench
:
bench.cpp
$(CXX)
bench.cpp
-o
bench
$(CXXFLAGS)
$(CXX_RELEASE_FLAGS)
example-debug
:
example.cpp
$(CXX)
example.cpp
-o
example-debug
$(CXXFLAGS)
$(CXX_DEBUG_FLAGS)
bench-debug
:
bench.cpp
$(CXX)
bench.cpp
-o
bench-debug
$(CXXFLAGS)
$(CXX_DEBUG_FLAGS)
clean
:
rm
-f
*
.o logs/
*
.txt example example-debug bench bench-debug
rebuild
:
clean all
rebuild-debug
:
clean debug
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment