Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
fa31ee68
Commit
fa31ee68
authored
Mar 14, 2016
by
Edward Thomson
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3671 from libgit2/cmn/remove-mingw32
Remove CI support for mingw32
parents
ff5a3967
b1093e62
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1 additions
and
25 deletions
+1
-25
.travis.yml
+0
-3
appveyor.yml
+0
-6
script/appveyor-mingw.sh
+1
-3
script/toolchain-mingw32.cmake
+0
-13
No files found.
.travis.yml
View file @
fa31ee68
...
...
@@ -37,9 +37,6 @@ matrix:
-
os
:
osx
compiler
:
gcc
include
:
-
compiler
:
i586-mingw32msvc-gcc
env
:
OPTIONS="-DCMAKE_TOOLCHAIN_FILE=../script/toolchain-mingw32.cmake" SKIP_TESTS=1
os
:
linux
-
compiler
:
gcc
env
:
COVERITY=1
os
:
linux
...
...
appveyor.yml
View file @
fa31ee68
...
...
@@ -13,15 +13,9 @@ environment:
-
GENERATOR
:
"
Visual
Studio
11
Win64"
ARCH
:
64
-
GENERATOR
:
"
MSYS
Makefiles"
ARCH
:
32
-
GENERATOR
:
"
MSYS
Makefiles"
ARCH
:
i686
# this is for 32-bit MinGW-w64
-
GENERATOR
:
"
MSYS
Makefiles"
ARCH
:
64
matrix
:
allow_failures
:
-
GENERATOR
:
"
MSYS
Makefiles"
ARCH
:
32
cache
:
-
i686-4.9.2-release-win32-sjlj-rt_v3-rev1.7z
-
x86_64-4.9.2-release-win32-seh-rt_v3-rev1.7z
...
...
script/appveyor-mingw.sh
View file @
fa31ee68
#!/bin/sh
set
-e
cd
`
dirname
"
$0
"
`
/..
if
[
"
$ARCH
"
=
"32"
]
;
then
echo
'C:\MinGW\ /MinGW'
>
/etc/fstab
elif
[
"
$ARCH
"
=
"i686"
]
;
then
if
[
"
$ARCH
"
=
"i686"
]
;
then
f
=
i686-4.9.2-release-win32-sjlj-rt_v3-rev1.7z
if
!
[
-e
$f
]
;
then
curl
-LsSO
http://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win32/Personal%20Builds/mingw-builds/4.9.2/threads-win32/sjlj/
$f
...
...
script/toolchain-mingw32.cmake
deleted
100644 → 0
View file @
ff5a3967
# CMake toolchain file for Win32 cross-compile
SET
(
CMAKE_SYSTEM_NAME Windows
)
SET
(
CMAKE_C_COMPILER i586-mingw32msvc-gcc
)
SET
(
CMAKE_RC_COMPILER i586-mingw32msvc-windres
)
SET
(
CMAKE_FIND_ROOT_PATH /usr/i586-mingw32msvc
)
SET
(
CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER
)
SET
(
CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY
)
SET
(
CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY
)
SET
(
ENV{PKG_CONFIG_LIBDIR}
${
CMAKE_FIND_ROOT_PATH
}
/lib/pkgconfig
)
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