-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add alpine3 docker for testing and missing include
- Loading branch information
Showing
2 changed files
with
11 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
FROM alpine:3 | ||
|
||
WORKDIR /pfs | ||
|
||
RUN apk add --update cmake alpine-sdk linux-headers | ||
|
||
ENV CXX=g++ | ||
ENV CC=gcc | ||
|
||
CMD /bin/sh |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,7 @@ | |
#define SAMPLE_LOG_HPP | ||
|
||
#include <iostream> | ||
#include <cstdint> | ||
|
||
#define TAB "\t" | ||
#define ENDL "\n" | ||
|