Home
last modified time | relevance | path

Searched +full:gcc +full:- +full:mingw +full:- +full:w64 (Results 1 – 25 of 103) sorted by relevance

12345

/third_party/libxml2/
D.gitlab-ci.yml3 # for libxslt, that's why we need git and libgcrypt-dev.
7 # RUN apt-get update && \
8 # apt-get upgrade -y && \
9 # apt-get install -y --no-install-recommends \
10 # curl git ca-certificates \
11 # autoconf automake libtool pkg-config \
12 # make gcc clang llvm \
13 # zlib1g-dev liblzma-dev libgcrypt-dev \
14 # python-dev python3-dev \
20 - |
[all …]
/third_party/ffmpeg/doc/
Dplatform.texi1 \input texinfo @c -*- texinfo -*-
2 @documentencoding UTF-8
13 @chapter Unix-like
21 $(gcc -print-prog-name=as) --version
25 hard-coded path to gas. In the worst case pass @code{--disable-asm}
32 @code{--enable-pic} during FFmpeg configure) and add the following option
36 -Wl,-Bsymbolic
40 pass the correct linking flag (e.g. @code{-pie}) to @code{--extra-ldexeflags}.
50 standard Solaris Make will not work. When building with a non-c99 front-end
51 (gcc, generic suncc) add either @code{--extra-libs=/usr/lib/values-xpg6.o}
[all …]
/third_party/f2fs-tools/.github/workflows/
Dci.yml1 # See also https://docs.github.com/en/actions/learn-github-actions/expressions
2 # See also https://github.com/marketplace/actions/setup-android-ndk
10 runs-on: ubuntu-latest
12 fail-fast: false
15 - android
16 - linux-gcc
17 - linux-clang
18 - linux-x86-gcc
19 - linux-powerpc64-gcc
20 - linux-mingw64-gcc
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/marl/kokoro/windows/
Dpresubmit.bat7 REM https://www.apache.org/licenses/LICENSE-2.0
27 git submodule update --init
38 -G "%BUILD_GENERATOR%" ^
39 -A "%BUILD_TARGET_ARCH%" ^
40 "-DMARL_BUILD_TESTS=1" ^
41 "-DMARL_BUILD_EXAMPLES=1" ^
42 "-DMARL_BUILD_BENCHMARKS=1" ^
43 "-DMARL_WARNINGS_AS_ERRORS=1" ^
44 "-DMARL_DEBUG_ENABLED=1"
46 cmake --build . --config %CONFIG%
[all …]
/third_party/rust/rust/src/ci/scripts/
Dinstall-mingw.sh2 # If we need to download a custom MinGW, do so here and set the path
5 # Otherwise install MinGW through `pacman`
7 set -euo pipefail
12 MINGW_ARCHIVE_32="i686-12.2.0-release-posix-dwarf-rt_v10-rev0.7z"
13 MINGW_ARCHIVE_64="x86_64-12.2.0-release-posix-seh-rt_v10-rev0.7z"
28 # aarch64 is a cross-compiled target. Use the x86_64
29 # mingw, since that's the host architecture.
35 echo "src/ci/scripts/install-mingw.sh can't detect the builder's architecture"
41 if [[ "${CUSTOM_MINGW-0}" -ne 1 ]]; then
42 pacman -S --noconfirm --needed mingw-w64-$arch-toolchain mingw-w64-$arch-cmake \
[all …]
/third_party/libuv/.github/workflows/
DCI-win.yml1 name: CI-win
6 - '**'
7 - '!docs/**'
8 - '!src/unix/**'
9 - '!.**'
10 - '.github/workflows/CI-win.yml'
13 - v[0-9].*
14 - master
17 build-windows:
18 runs-on: windows-${{ matrix.config.server }}
[all …]
/third_party/skia/third_party/externals/harfbuzz/
DREADME.mingw.md2 as a widely used and tested shaper is used as more-or-less OpenType reference
11 - Fedora: `dnf install wine`.
13 2. Install `mingw-w64` compiler.
14 - Fedora, 32bit: `dnf install mingw32-gcc-c++`
15 - Fedora, 64bit: `dnf install mingw64-gcc-c++`
16 - Debian: `apt install g++-mingw-w64`
17 - Mac: `brew install mingw-w64`
19 3. If you have drank the `meson` koolaid, look at `.ci/build-win32.sh` to see how to
24 - Fedora, 32bit: `dnf install mingw32-glib2 mingw32-cairo mingw32-freetype`
25 - Fedora, 64bit: `dnf install mingw64-glib2 mingw64-cairo mingw64-freetype`
[all …]
/third_party/ncurses/package/debian-mingw/
Dcontrol4 Maintainer: Thomas E. Dickey <dickey@invisible-island.net>
5 Homepage: https://invisible-island.net/ncurses/
6 Build-Depends: debhelper (>= 7),
7 gcc-mingw-w64-i686,
8 g++-mingw-w64-i686,
9 binutils-mingw-w64-i686
10 Standards-Version: 4.6.1.0
12 Package: mingw32-ncurses6
16 The ncurses library routines are a terminal-independent method of
19 This package is used for testing ABI 6 with the MinGW 32-bit port.
/third_party/ncurses/package/debian-mingw64/
Dcontrol4 Maintainer: Thomas E. Dickey <dickey@invisible-island.net>
5 Homepage: https://invisible-island.net/ncurses/
6 Build-Depends: debhelper (>= 7),
7 gcc-mingw-w64-x86-64,
8 g++-mingw-w64-x86-64,
9 binutils-mingw-w64-x86-64
10 Standards-Version: 4.6.1.0
12 Package: mingw64-ncurses6
16 The ncurses library routines are a terminal-independent method of
19 This package is used for testing ABI 6 with the MinGW 64-bit port.
/third_party/glfw/CMake/
Di686-w64-mingw32.cmake1 # Define the environment for cross-compiling with 32-bit MinGW-w64 GCC
4 SET(CMAKE_C_COMPILER "i686-w64-mingw32-gcc")
5 SET(CMAKE_CXX_COMPILER "i686-w64-mingw32-g++")
6 SET(CMAKE_RC_COMPILER "i686-w64-mingw32-windres")
7 SET(CMAKE_RANLIB "i686-w64-mingw32-ranlib")
10 SET(CMAKE_FIND_ROOT_PATH "/usr/i686-w64-mingw32")
Dx86_64-w64-mingw32.cmake1 # Define the environment for cross-compiling with 64-bit MinGW-w64 GCC
4 SET(CMAKE_C_COMPILER "x86_64-w64-mingw32-gcc")
5 SET(CMAKE_CXX_COMPILER "x86_64-w64-mingw32-g++")
6 SET(CMAKE_RC_COMPILER "x86_64-w64-mingw32-windres")
7 SET(CMAKE_RANLIB "x86_64-w64-mingw32-ranlib")
10 SET(CMAKE_FIND_ROOT_PATH "/usr/x86_64-w64-mingw32")
/third_party/libcoap/
DBUILDING1 For Windows builds - see the Windows Section
12 * Change to the directory that you want to install the libcoap sub-directory
19 * Change to the directory that you want to install the libcoap sub-directory
21 * Then clone the latest (develop) version of the code:-
24 * Optionally, change the branch from develop to the stable main branch:-
42 General Building with cmake for linux/windows/macos/android (not for RIOT, LwIP or Contiki-NG - see…
45 cmake -E remove_directory build
46 cmake -E make_directory build
48 cmake .. -DENABLE_TESTS=ON
49 cmake --build .
[all …]
/third_party/rust/rust/src/etc/third-party/
DREADME.txt1gcc and other parts of the GNU compiler toolchain, are licensed either under the terms of the GNU …
3 You can obtain a copy of the source of these libraries from the MinGW-w64 project[1].
5 [1]: http://mingw-w64.sourceforge.net/
/third_party/libjpeg-turbo/
Dappveyor.yml2 - cmd: >-
7 …rs\nasm-2.10.01-win32.zip curl -fSL -o c:\installers\nasm-2.10.01-win32.zip http://www.nasm.us/pub…
9 7z x c:\installers\nasm-2.10.01-win32.zip -oc:\ > c:\installers\nasm.install.log
11-6.4.0-release-posix-dwarf-rt_v5-rev0.7z curl -fSL -o c:\installers\i686-6.4.0-release-posix-dwarf
13 md "c:\Program Files (x86)\mingw-w64\i686-6.4.0-posix-dwarf-rt_v5-rev0"
15 …7z x c:\installers\i686-6.4.0-release-posix-dwarf-rt_v5-rev0.7z -o"c:\Program Files (x86)\mingw-w6…
17-6.4.0-release-posix-seh-rt_v5-rev0.7z curl -fSL -o c:\installers\x86_64-6.4.0-release-posix-seh-r…
19 md "c:\Program Files\mingw-w64\x86_64-6.4.0-posix-seh-rt_v5-rev0"
21 …7z x c:\installers\x86_64-6.4.0-release-posix-seh-rt_v5-rev0.7z -o"c:\Program Files\mingw-w64\x86_…
27 …set PATH=c:\nasm-2.10.01;c:\Program Files (x86)\NSIS;c:\msys64\usr\bin;c:\Program Files (x86)\Micr…
[all …]
/third_party/rust/rust/
DREADME_zh.md3 …tps://img.shields.io/badge/Rust_Community%20-Join_us-brightgreen?style=plastic&logo=rust)](https:/…
8 [Rust]: https://www.rust-lang.org/
18 ["安装"]: https://doc.rust-lang.org/book/ch01-01-installation.html
19 [本书]: https://doc.rust-lang.org/book/index.html
40 关于 `x.py` 的更多信息,可以通过使用 `--help`标记来运行它
43 [gettingstarted]: https://rustc-dev-guide.rust-lang.org/getting-started.html
44 [rustcguidebuild]: https://rustc-dev-guide.rust-lang.org/building/how-to-build-and-run.html#what-is
55 * 如果在 Linux 上编译并以 Linux 为目标,则需要 `pkg-config`
58 要编译 Cargo,还需要 OpenSSL(在大多数 Unix 发行版上为 `libssl-dev` 或 `openssl-devel` )。
64 …[LLVM 的文档](https://llvm.org/docs/GettingStarted.html#host-c-toolchain-both-compiler-and-standard-l…
[all …]
/third_party/ncurses/test/package/
Dmingw-ncurses-examples.spec1 Summary: ncurses-examples - example/test programs from ncurses
4 %global AppProgram ncurses-examples
7 # $Id: mingw-ncurses-examples.spec,v 1.11 2023/02/25 23:10:34 tom Exp $
8 Name: mingw32-ncurses6-examples
13 URL: https://invisible-island.net/ncurses/%{AppProgram}.html
14 Source: https://invisible-island.net/archives/%{AppProgram}/%{AppProgram}-%{release}.tgz
16 BuildRequires: mingw32-ncurses6
18 BuildRequires: mingw32-filesystem >= 95
19 BuildRequires: mingw32-gcc
20 BuildRequires: mingw32-binutils
[all …]
/third_party/openssl/
DNOTES-WINDOWS.md4 - [Native builds using Visual C++](#native-builds-using-visual-c++)
5 - [Native builds using Embarcadero C++Builder](
6 #native-builds-using-embarcadero-c++-builder)
7 - [Native builds using MinGW](#native-builds-using-mingw)
8 - [Linking native applications](#linking-native-applications)
9 - [Hosted builds using Cygwin](#hosted-builds-using-cygwin)
20 MinGW cross compiler
21 run on the GNU-like development environment MSYS2
31 The native builds using Visual C++ have a `VC-*` prefix.
34 -------------------
[all …]
/third_party/libwebsockets/contrib/
Dcross-w64.cmake6 # cmake .. -DCMAKE_TOOLCHAIN_FILE=../contrib/cross-w64.cmake
13 set(CROSS_ROOT ${CROSS_PATH}/x86_64-w64-mingw32/sys-root/)
20 set(CMAKE_C_COMPILER "${CROSS_PATH}/bin/x86_64-w64-mingw32-gcc")
21 set(CMAKE_CXX_COMPILER "${CROSS_PATH}/bin/x86_64-w64-mingw32-g++")
22 set(CMAKE_RC_COMPILER "${CROSS_PATH}/bin/x86_64-w64-mingw32-windres")
23 set(CMAKE_C_FLAGS "-Wno-error")
27 # things according to their local policy, eg, Fedora is -O2 and Ubuntu is -O3
29 # our desire for cross-build release optimization policy for code built to run
33 # sane value for cross-build here. Notice some gcc versions enable broken
34 # optimizations with -O3.
[all …]
Dcross-w32.cmake6 # cmake .. -DCMAKE_TOOLCHAIN_FILE=../contrib/cross-w32.cmake -DLWS_WITH_SSL=0
13 set(CROSS_ROOT ${CROSS_PATH}/i686-w64-mingw32/sys-root/)
19 set(CMAKE_C_COMPILER "${CROSS_PATH}/bin/i686-w64-mingw32-gcc")
20 set(CMAKE_CXX_COMPILER "${CROSS_PATH}/bin/i686-w64-mingw32-g++")
21 set(CMAKE_RC_COMPILER "${CROSS_PATH}/bin/i686-w64-mingw32-windres")
25 # things according to their local policy, eg, Fedora is -O2 and Ubuntu is -O3
27 # our desire for cross-build release optimization policy for code built to run
31 # sane value for cross-build here. Notice some gcc versions enable broken
32 # optimizations with -O3.
35 set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -O2")
[all …]
Dcross-ming.cmake2 # CMake Toolchain file for crosscompiling on MingW.
6 # cmake .. -DCMAKE_TOOLCHAIN_FILE=../cross-ming.cmake
16 set(CMAKE_C_COMPILER "${CROSS_PATH}/x86_64-w64-mingw32-gcc")
17 #set(CMAKE_CXX_COMPILER "${CROSS_PATH}/x86_64-w64-mingw32-g++")
18 set(CMAKE_RC_COMPILER "${CROSS_PATH}/x86_64-w64-mingw32-windres")
19 set(CMAKE_C_FLAGS "-Wno-error")
23 # things according to their local policy, eg, Fedora is -O2 and Ubuntu is -O3
25 # our desire for cross-build release optimization policy for code built to run
29 # sane value for cross-build here. Notice some gcc versions enable broken
30 # optimizations with -O3.
[all …]
/third_party/glfw/docs/
Dbuild.md31 The GLFW header also defines any platform-specific macros needed by your OpenGL
40 - Use the GLFW header to include OpenGL or OpenGL ES headers portably
41 - Do not include window system headers unless you will use those APIs directly
42 - If you do need such headers, include them before the GLFW header
147 GLFW is essentially a wrapper of various platform-specific APIs and therefore
154 hard-coded into your build environment. See the section for your development
155 environment below. On Linux and other Unix-like operating systems, the list
168 archive matching the architecture you are building for (32-bit or 64-bit), or
173 it needs to use the same base run-time library variant as the rest of your
177 option set to _Multi-threaded DLL_ or _Multi-threaded Debug DLL_. The other is
[all …]
Dcompile.md16 compile_deps and @ref compile_options sections for GLFW-specific information.
25 If you are on a Unix-like system such as Linux, FreeBSD or Cygwin or have
31 [CMake user guide][cmake-guide] that includes everything in this guide not
34 [cmake-guide]: https://cmake.org/cmake/help/latest/guide/user-interaction/
39 The C/C++ development environments in Visual Studio, Xcode and MinGW come with
40 all necessary dependencies for compiling GLFW, but on Unix-like systems like
46 By default, both the Wayland and X11 backends are enabled on Linux and other Unix-like
55 On Debian and derivatives like Ubuntu and Linux Mint you will need the `libwayland-dev`
56 and `libxkbcommon-dev` packages to compile for Wayland and the `xorg-dev` meta-package to
60 sudo apt install libwayland-dev libxkbcommon-dev xorg-dev
[all …]
/third_party/ncurses/package/
Dmingw-ncurses.spec4 Name: mingw32-ncurses6
9 URL: https://invisible-island.net/ncurses/
10 Source: https://invisible-island.net/archives/ncurses/ncurses-%{version}-%{release}.tgz
12 BuildRequires: mingw32-filesystem >= 95
13 BuildRequires: mingw32-gcc
14 BuildRequires: mingw32-binutils
16 BuildRequires: mingw64-filesystem >= 95
17 BuildRequires: mingw64-gcc
18 BuildRequires: mingw64-binutils
22 %define CC_NORMAL -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wconversion
[all …]
/third_party/python/.cid/
Dpython_builder.py2 # -*- coding: utf-8 -*-
9 # http://www.apache.org/licenses/LICENSE-2.0
32 format='%(asctime)s - %(levelname)s - %(message)s',
66 def __init__(self, build_config) -> None:
77 …self._prebuilts_python_path = os.path.join(self._prebuilts_path, 'python', 'linux-x86', self._lldb…
84 def _logger(self) -> logging.Logger:
88 def _cc(self) -> Path:
92 def _cflags(self) -> List[str]:
96 def _ldflags(self) -> List[str]:
100 def _cxx(self) -> Path:
[all …]
/third_party/fsverity-utils/.github/workflows/
Dci.yml1 # SPDX-License-Identifier: MIT
4 # Use of this source code is governed by an MIT-style
12 static-linking-test:
14 runs-on: ubuntu-latest
16 - uses: actions/checkout@v4
17 - run: scripts/run-tests.sh static_linking
19 dynamic-linking-test:
21 runs-on: ubuntu-latest
23 - uses: actions/checkout@v4
24 - run: scripts/run-tests.sh dynamic_linking
[all …]

12345