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
c0c5c016
Commit
c0c5c016
authored
Feb 25, 2016
by
Kevin M. Godby
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added -I copmiler flag to find spdlog headers for Travis CI and tests/Makefile.
parent
077c3095
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
.travis.yml
.travis.yml
+1
-1
Makefile
tests/Makefile
+1
-1
No files found.
.travis.yml
View file @
c0c5c016
...
@@ -84,7 +84,7 @@ install:
...
@@ -84,7 +84,7 @@ install:
-
sed -i 's/march=native/msse4.2/' example/Makefile
-
sed -i 's/march=native/msse4.2/' example/Makefile
-
if [ ! -d build ]; then mkdir build; fi
-
if [ ! -d build ]; then mkdir build; fi
-
export CXX_FLAGS=""
-
export CXX_FLAGS="
-I${CHECKOUT_PATH}/include
"
-
export CXX_LINKER_FLAGS=""
-
export CXX_LINKER_FLAGS=""
-
if [ -z "$BUILD_TYPE" ]; then export BUILD_TYPE=Release; fi
-
if [ -z "$BUILD_TYPE" ]; then export BUILD_TYPE=Release; fi
-
if [ "$ASAN" == "On"]; then export CXX_FLAGS="${CXX_FLAGS} -fsanitize=address,undefined,integer -fno-omit-frame-pointer -fno-sanitize=unsigned-integer-overflow"; fi
-
if [ "$ASAN" == "On"]; then export CXX_FLAGS="${CXX_FLAGS} -fsanitize=address,undefined,integer -fno-omit-frame-pointer -fno-sanitize=unsigned-integer-overflow"; fi
...
...
tests/Makefile
View file @
c0c5c016
CXX
?=
g++
CXX
?=
g++
CXXFLAGS
=
-Wall
-pedantic
-std
=
c++11
-pthread
-O2
CXXFLAGS
=
-Wall
-pedantic
-std
=
c++11
-pthread
-O2
-I
../include
LDPFALGS
=
-pthread
LDPFALGS
=
-pthread
CPP_FILES
:=
$
(
wildcard
*
.cpp
)
CPP_FILES
:=
$
(
wildcard
*
.cpp
)
...
...
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