Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
C
capnproto
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
capnproto
Commits
9694c373
Unverified
Commit
9694c373
authored
Apr 23, 2018
by
Kenton Varda
Committed by
GitHub
Apr 23, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #660 from chronoxor/master
MinGW 7.2 (x86_64) build failed
parents
3529a6ee
ab4dae82
Hide whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
75 additions
and
14 deletions
+75
-14
appveyor-cygwin.sh
appveyor-cygwin.sh
+4
-0
appveyor.yml
appveyor.yml
+12
-11
capnp.c++
c++/src/capnp/compiler/capnp.c++
+4
-0
capnpc-capnp.c++
c++/src/capnp/compiler/capnpc-capnp.c++
+4
-0
evolution-test.c++
c++/src/capnp/compiler/evolution-test.c++
+4
-0
fuzz-test.c++
c++/src/capnp/fuzz-test.c++
+4
-0
serialize-async-test.c++
c++/src/capnp/serialize-async-test.c++
+4
-0
serialize-test.c++
c++/src/capnp/serialize-test.c++
+4
-0
async-io-unix.c++
c++/src/kj/async-io-unix.c++
+4
-0
debug-test.c++
c++/src/kj/debug-test.c++
+4
-0
exception.c++
c++/src/kj/exception.c++
+4
-0
filesystem-disk-unix.c++
c++/src/kj/filesystem-disk-unix.c++
+6
-2
filesystem-disk-win32.c++
c++/src/kj/filesystem-disk-win32.c++
+1
-1
io-test.c++
c++/src/kj/io-test.c++
+4
-0
io.c++
c++/src/kj/io.c++
+4
-0
main.c++
c++/src/kj/main.c++
+4
-0
test.c++
c++/src/kj/test.c++
+4
-0
No files found.
appveyor-cygwin.sh
0 → 100755
View file @
9694c373
#! /usr/bin/env bash
cmake
-Hc
++
-B
./build-cygwin
-G
"Unix Makefiles"
-DCMAKE_BUILD_TYPE
=
debug
-DCMAKE_INSTALL_PREFIX
=
./capnproto-c++-cygwin
cmake
--build
./build-cygwin
--config
debug
--target
install
--
-j2
appveyor.yml
View file @
9694c373
...
...
@@ -50,11 +50,15 @@ environment:
BUILD_NAME
:
mingw
EXTRA_BUILD_FLAGS
:
-j2
-
BUILD_NAME
:
cygwin
install
:
-
if not exist "%MINGW_ARCHIVE%" appveyor DownloadFile "%MINGW_URL%" -FileName "%MINGW_ARCHIVE%"
-
7z x -y "%MINGW_ARCHIVE%" > nul
-
ps
:
Get-Command sh.exe -All | Remove-Item
# CMake refuses to generate MinGW Makefiles if sh.exe is in the PATH
-
if "%BUILD_NAME%"=="cygwin" appveyor DownloadFile "http://cygwin.com/setup-x86_64.exe" -FileName "C:\cygwin64\setup-x86_64.exe"
-
if "%BUILD_NAME%"=="cygwin" C:\cygwin64\setup-x86_64.exe --quiet-mode --no-shortcuts --upgrade-also --root "C:\cygwin64" --packages cmake
before_build
:
-
set PATH=%CD%\%MINGW_DIR%\bin;%PATH%
...
...
@@ -64,24 +68,21 @@ before_build:
build_script
:
-
echo "Building Cap'n Proto with %CMAKE_GENERATOR%"
-
>-
cmake -Hc++ -B%BUILD_DIR% -G "%CMAKE_GENERATOR%"
-DCMAKE_BUILD_TYPE=%BUILD_TYPE%
-DCMAKE_INSTALL_PREFIX=%INSTALL_PREFIX%
- cmake --build %BUILD_DIR% --config %BUILD_TYPE% --target install -- %EXTRA_BUILD_FLAGS%
-
if NOT "%BUILD_NAME%"=="cygwin" cmake -Hc++ -B%BUILD_DIR% -G "%CMAKE_GENERATOR%" -DCMAKE_BUILD_TYPE=%BUILD_TYPE% -DCMAKE_INSTALL_PREFIX=%INSTALL_PREFIX%
-
if NOT "%BUILD_NAME%"=="cygwin" cmake --build %BUILD_DIR% --config %BUILD_TYPE% --target install -- %EXTRA_BUILD_FLAGS%
# MinGW wants the build type at configure-time while MSVC wants the build type at build-time. We
# can satisfy both by passing the build type to both cmake invocations. We have to suffer a
# warning, but both generators will work.
-
echo "Building Cap'n Proto samples with %CMAKE_GENERATOR%"
-
>-
cmake -Hc++/samples -B%BUILD_DIR%-samples -G "%CMAKE_GENERATOR%"
-DCMAKE_BUILD_TYPE=%BUILD_TYPE%
-DCMAKE_PREFIX_PATH=%INSTALL_PREFIX%
-
cmake --build %BUILD_DIR%-samples --config %BUILD_TYPE%
-
if NOT "%BUILD_NAME%"=="cygwin" cmake -Hc++/samples -B%BUILD_DIR%-samples -G "%CMAKE_GENERATOR%" -DCMAKE_BUILD_TYPE=%BUILD_TYPE% -DCMAKE_PREFIX_PATH=%INSTALL_PREFIX%
-
if NOT "%BUILD_NAME%"=="cygwin" cmake --build %BUILD_DIR%-samples --config %BUILD_TYPE%
# Cygwin build
-
if "%BUILD_NAME%"=="cygwin" C:\cygwin64\bin\bash -lc 'cd /cygdrive/c/projects/capnproto; ./appveyor-cygwin.sh'
test_script
:
-
timeout /t 2
# Sleep a little to prevent interleaving test output with build output.
-
cd %BUILD_DIR%\src
-
ctest -V -C %BUILD_TYPE%
-
if NOT "%BUILD_NAME%"=="cygwin"
ctest -V -C %BUILD_TYPE%
c++/src/capnp/compiler/capnp.c++
View file @
9694c373
...
...
@@ -19,6 +19,10 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include "lexer.h"
#include "parser.h"
#include "compiler.h"
...
...
c++/src/capnp/compiler/capnpc-capnp.c++
View file @
9694c373
...
...
@@ -22,6 +22,10 @@
// This program is a code generator plugin for `capnp compile` which writes the schema back to
// stdout in roughly capnpc format.
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include <capnp/schema.capnp.h>
#include "../serialize.h"
#include <kj/debug.h>
...
...
c++/src/capnp/compiler/evolution-test.c++
View file @
9694c373
...
...
@@ -26,6 +26,10 @@
// the types are expected to be compatible, the test also constructs an instance of the old
// type and reads it as the new type, and vice versa.
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include <capnp/compiler/grammar.capnp.h>
#include <capnp/schema-loader.h>
#include <capnp/message.h>
...
...
c++/src/capnp/fuzz-test.c++
View file @
9694c373
...
...
@@ -19,6 +19,10 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include <capnp/test-import.capnp.h>
#include <capnp/test-import2.capnp.h>
#include "message.h"
...
...
c++/src/capnp/serialize-async-test.c++
View file @
9694c373
...
...
@@ -19,6 +19,10 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include "serialize-async.h"
#include "serialize.h"
#include <kj/debug.h>
...
...
c++/src/capnp/serialize-test.c++
View file @
9694c373
...
...
@@ -19,6 +19,10 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include "serialize.h"
#include <kj/debug.h>
#include <kj/compat/gtest.h>
...
...
c++/src/kj/async-io-unix.c++
View file @
9694c373
...
...
@@ -22,6 +22,10 @@
#if !_WIN32
// For Win32 implementation, see async-io-win32.c++.
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include "async-io.h"
#include "async-io-internal.h"
#include "async-unix.h"
...
...
c++/src/kj/debug-test.c++
View file @
9694c373
...
...
@@ -19,6 +19,10 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include "debug.h"
#include "exception.h"
#include <kj/compat/gtest.h>
...
...
c++/src/kj/exception.c++
View file @
9694c373
...
...
@@ -19,6 +19,10 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include "exception.h"
#include "string.h"
#include "debug.h"
...
...
c++/src/kj/filesystem-disk-unix.c++
View file @
9694c373
...
...
@@ -21,6 +21,10 @@
#if !_WIN32
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include "filesystem.h"
#include "debug.h"
#include <sys/types.h>
...
...
@@ -385,8 +389,8 @@ public:
static
const
byte
ZEROS
[
4096
]
=
{
0
};
#if __APPLE__
// Mac doesn't have pwritev().
#if __APPLE__
|| __CYGWIN__
// Mac
& Cygwin
doesn't have pwritev().
while
(
size
>
sizeof
(
ZEROS
))
{
write
(
offset
,
ZEROS
);
size
-=
sizeof
(
ZEROS
);
...
...
c++/src/kj/filesystem-disk-win32.c++
View file @
9694c373
...
...
@@ -1094,7 +1094,7 @@ public:
}
KJ_DEFER
({
if
(
kj
::
isSameType
<
T
,
Directory
>
())
{
HANDLE
newHandle
;
HANDLE
newHandle
=
nullptr
;
KJ_WIN32
(
newHandle
=
CreateFileW
(
committed
?
parentDirectory
.
nativePath
(
path
).
begin
()
:
tempPath
.
begin
(),
GENERIC_READ
,
...
...
c++/src/kj/io-test.c++
View file @
9694c373
...
...
@@ -19,6 +19,10 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include "io.h"
#include "debug.h"
#include "miniposix.h"
...
...
c++/src/kj/io.c++
View file @
9694c373
...
...
@@ -19,6 +19,10 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include "io.h"
#include "debug.h"
#include "miniposix.h"
...
...
c++/src/kj/main.c++
View file @
9694c373
...
...
@@ -19,6 +19,10 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include "main.h"
#include "debug.h"
#include "arena.h"
...
...
c++/src/kj/test.c++
View file @
9694c373
...
...
@@ -19,6 +19,10 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include "test.h"
#include "main.h"
#include "io.h"
...
...
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