Home
last modified time | relevance | path

Searched +full:x86_64 +full:- +full:linux +full:- +full:gnu (Results 1 – 25 of 158) sorted by relevance

1234567

/freebsd/crypto/libecc/
H A D.travis.yml2 os: linux
4 - bionic
9- secure: "jhz0JLrLjWABZfT/mWiwuddUMvJNdrkIWJEqFGtGLO/x/nbiFD8ooHl/Sb+JSOsr8obXYMVmO+7ubTOLeqAbfaq…
12- echo -n | openssl s_client -connect https://scan.coverity.com:443 | sed -ne '/-BEGIN CERTIFICATE
19 - make
20 - gcc
21 - clang
22 - qemu-user-static
23 - wine-stable
24 - wine32
[all …]
/freebsd/crypto/libecc/scripts/
H A Dcrossrun.sh2 # * Copyright (C) 2017 - This file is part of libecc project
7 # * Jean-Pierre FLORI <jean-pierre.flori@ssi.gouv.fr>
22-apple-darwin" ] && [ "$triplet" != "x86_64-apple-darwin" ] && [ "$triplet" != "x86_64h-apple-darw…
28 …if [ "$triplet" = "i386-apple-darwin" ] || [ "$triplet" = "x86_64-apple-darwin" ] || [ "$triplet" …
29 echo " [X] Testing MAC-OS binaries is futur work!"
31 if [ "$triplet" = "i686-w64-mingw32" ] || [ "$triplet" = "x86_64-w64-mingw32" ]; then
41 echo "$0 uses qemu-static and wine to run self tests"
45 echo "arm-linux-gnueabi / arm-linux-gnueabihf / powerpc64le-linux-gnu / aarch64-linux-gnu /"
46 …echo "mipsel-linux-gnu / i386-apple-darwin / x86_64-apple-darwin / i686-w64-mingw32 / x86_64-w64-m…
51 SRC_DIR=`dirname "$(readlink -f "$0")"`/..
[all …]
H A Dcrossbuild.sh2 # * Copyright (C) 2017 - This file is part of libecc project
7 # * Jean-Pierre FLORI <jean-pierre.flori@ssi.gouv.fr>
21 if [ -e $1 ]
58 mkdir -p $ROOT_DIR
60 cp -r $SRC_DIR/src/ $ROOT_DIR/
61 cp -r $SRC_DIR/include/ $ROOT_DIR/
64 mkdir -p $ROOT_DIR/build
65 mkdir -p $CROSSBUILD_OUTPUT/compilation_log
66 mkdir -p $CROSSBUILD_OUTPUT/error_log
69 …64 bit triplets, multiarch/crossbuild docker's gcc 4.9 has a bug handling loop unrolling in -O3 and
[all …]
/freebsd/crypto/libecc/.github/workflows/
H A Dlibecc_crossarch_tests.yml8 runs-on: ubuntu-20.04
10 #max-parallel: 10
15-linux-gnueabi, arm-linux-gnueabihf, aarch64-linux-gnu, powerpc64le-linux-gnu, mipsel-linux-gnu, i…
16 …_target: [arm-linux-gnueabi, arm-linux-gnueabihf, aarch64-linux-gnu, powerpc64le-linux-gnu, mipsel
20 - name: Set Swap Space
21 uses: pierotofy/set-swap-space@master
23 swap-size-gb: 10
25 - name: checkout repository
29 - name: libecc cross-arch tests
40 sudo apt-get update;
[all …]
/freebsd/crypto/openssl/fuzz/
H A DREADME.md7 ---------
13 -----------------------------------
15 Install `clang`, which [ships with `libfuzzer`](http://llvm.org/docs/LibFuzzer.html#fuzzer-usage)
18 sudo apt-get install clang
23 `/usr/lib/llvm-7/lib/clang/7.0.1/lib/linux/libclang_rt.fuzzer-x86_64.a`.
25 CC=clang ./config enable-fuzz-libfuzzer \
26 --with-fuzzer-lib=$PATH_TO_LIBFUZZER \
27 -DPEDANTIC enable-asan enable-ubsan no-shared \
28 -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION \
29 -fsanitize=fuzzer-no-link \
[all …]
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DLinux.cpp1 //===--- Linux.h - Linux ToolChain Implementations --------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #include "Linux.h"
37 /// Debian-based systems are starting to use a multiarch setup where they use
38 /// a target-triple directory in the library and header search paths.
41 std::string Linux::getMultiarchTriple(const Driver &D, in getMultiarchTriple()
57 // common linux triples that don't quite match the Clang triple for both in getMultiarchTriple()
58 // 32-bit and 64-bit targets. Multiarch fixes its install triples to these in getMultiarchTriple()
63 return "arm-linux-androideabi"; in getMultiarchTriple()
[all …]
H A DGnu.cpp1 //===--- Gnu.cpp - Gnu Tool and ToolChain Implementations -------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #include "Gnu.h"
19 #include "Linux.h"
53 // Switch CPU names not recognized by GNU assembler to a close CPU that it does
59 StringRef CPUArg(A->getValue()); in normalizeCPUNamesForAssembler()
61 CmdArgs.push_back("-mcpu=cortex-a15"); in normalizeCPUNamesForAssembler()
63 CmdArgs.push_back("-mcpu=cortex-a57"); in normalizeCPUNamesForAssembler()
78 if (forwardToGCC(A->getOption())) { in ConstructJob()
[all …]
/freebsd/crypto/openssl/util/perl/OpenSSL/
H A Dconfig.pm2 # Copyright 1998-2024 The OpenSSL Project Authors. All Rights Reserved.
51 # This is a list to ensure that gnu comes last, as we've made it a fallback
56 my $v = `$CROSS_COMPILE$CC -v 2>&1`;
57 $v =~ m/(?:(?:clang|LLVM) version|.*based on LLVM)\s+([0-9]+\.[0-9]+)/;
60 gnu => sub {
62 my $nul = File::Spec->devnull();
63 my $v = `$CROSS_COMPILE$CC -dumpversion 2> $nul`;
66 $v =~ s/^[a-zA-Z]*\-//;
77 [ 'A\/UX:.*', 'm68k-apple-aux3' ],
78 [ 'AIX:[3-9]:4:.*', '${MACHINE}-ibm-aix' ],
[all …]
/freebsd/crypto/openssl/Configurations/
H A D10-main.conf1 ## -*- mode: perl; -*-
8 if (`nasm -v 2>NUL` =~ /NASM version ([0-9]+\.[0-9]+)/ && $1 >= 2.0) {
10 ASFLAGS => "-g",
11 asflags => "-Ox -f win64 -DNEAR",
12 asoutflag => "-o ",
22 $die->("NASM not found - make sure it's installed and available on %PATH%\n");
36 my $ver=`nasm -v 2>NUL`;
37 my $vew=`nasmw -v 2>NUL`;
41 asflags => "-f win32",
42 asoutflag => "-o ",
[all …]
/freebsd/contrib/ntp/sntp/libevent/build-aux/
H A Dconfig.guess3 # Copyright 1992-2014 Free Software Foundation, Inc.
5 timestamp='2014-11-04'
8 # under the terms of the GNU General Public License as published by
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, see <http://www.gnu.org/licenses/>.
20 # As a special exception to the GNU General Public License, if you
25 # of the GNU General Public License, version 3 ("GPLv3").
30 # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD
32 # Please send patches to <config-patches@gnu.org>.
[all …]
/freebsd/contrib/openpam/
H A Dconfig.guess3 # Copyright 1992-2018 Free Software Foundation, Inc.
5 timestamp='2018-08-29'
8 # under the terms of the GNU General Public License as published by
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, see <https://www.gnu.org/licenses/>.
20 # As a special exception to the GNU General Public License, if you
25 # of the GNU General Public License, version 3 ("GPLv3").
30 # https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess
32 # Please send patches to <config-patches@gnu.org>.
[all …]
/freebsd/contrib/dialog/
H A Dconfig.guess3 # Copyright 1992-2020 Free Software Foundation, Inc.
5 timestamp='2020-08-17'
8 # under the terms of the GNU General Public License as published by
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, see <https://www.gnu.org/licenses/>.
20 # As a special exception to the GNU General Public License, if you
25 # of the GNU General Public License, version 3 ("GPLv3").
30 # https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess
32 # Please send patches to <config-patches@gnu.org>.
[all …]
/freebsd/contrib/libevent/build-aux/
H A Dconfig.guess3 # Copyright 1992-2020 Free Software Foundation, Inc.
5 timestamp='2020-01-01'
8 # under the terms of the GNU General Public License as published by
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, see <https://www.gnu.org/licenses/>.
20 # As a special exception to the GNU General Public License, if you
25 # of the GNU General Public License, version 3 ("GPLv3").
30 # https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess
32 # Please send patches to <config-patches@gnu.org>.
[all …]
H A Dconfig.sub3 # Copyright 1992-2020 Free Software Foundation, Inc.
5 timestamp='2020-01-01'
8 # under the terms of the GNU General Public License as published by
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, see <https://www.gnu.org/licenses/>.
20 # As a special exception to the GNU General Public License, if you
25 # of the GNU General Public License, version 3 ("GPLv3").
28 # Please send patches to <config-patches@gnu.org>.
36 # https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub
[all …]
/freebsd/contrib/ntp/sntp/libevent/
H A Dconfig.guess3 # Copyright 1992-2015 Free Software Foundation, Inc.
5 timestamp='2015-03-04'
8 # under the terms of the GNU General Public License as published by
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, see <http://www.gnu.org/licenses/>.
20 # As a special exception to the GNU General Public License, if you
25 # of the GNU General Public License, version 3 ("GPLv3").
30 # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD
32 # Please send patches to <config-patches@gnu.org>.
[all …]
/freebsd/contrib/unbound/
H A Dconfig.guess3 # Copyright 1992-2025 Free Software Foundation, Inc.
7 timestamp='2025-07-10'
10 # under the terms of the GNU General Public License as published by
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, see <https://www.gnu.org/licenses/>.
22 # As a special exception to the GNU General Public License, if you
27 # of the GNU General Public License, version 3 ("GPLv3").
32 # https://git.savannah.gnu.org/cgit/config.git/plain/config.guess
34 # Please send patches to <config-patches@gnu.org>.
[all …]
/freebsd/contrib/file/
H A Dconfig.guess3 # Copyright 1992-2021 Free Software Foundation, Inc.
7 timestamp='2021-06-03'
10 # under the terms of the GNU General Public License as published by
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, see <https://www.gnu.org/licenses/>.
22 # As a special exception to the GNU General Public License, if you
27 # of the GNU General Public License, version 3 ("GPLv3").
32 # https://git.savannah.gnu.org/cgit/config.git/plain/config.guess
34 # Please send patches to <config-patches@gnu.org>.
[all …]
H A Dconfig.sub3 # Copyright 1992-2021 Free Software Foundation, Inc.
7 timestamp='2021-08-14'
10 # under the terms of the GNU General Public License as published by
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, see <https://www.gnu.org/licenses/>.
22 # As a special exception to the GNU General Public License, if you
27 # of the GNU General Public License, version 3 ("GPLv3").
30 # Please send patches to <config-patches@gnu.org>.
38 # https://git.savannah.gnu.org/cgit/config.git/plain/config.sub
[all …]
/freebsd/contrib/jemalloc/build-aux/
H A Dconfig.guess3 # Copyright 1992-2021 Free Software Foundation, Inc.
5 timestamp='2021-01-01'
8 # under the terms of the GNU General Public License as published by
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, see <https://www.gnu.org/licenses/>.
20 # As a special exception to the GNU General Public License, if you
25 # of the GNU General Public License, version 3 ("GPLv3").
30 # https://git.savannah.gnu.org/cgit/config.git/plain/config.guess
32 # Please send patches to <config-patches@gnu.org>.
[all …]
/freebsd/crypto/openssh/
H A Dconfig.sub3 # Copyright 1992-2022 Free Software Foundation, Inc.
7 timestamp='2022-09-17'
10 # under the terms of the GNU General Public License as published by
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, see <https://www.gnu.org/licenses/>.
22 # As a special exception to the GNU General Public License, if you
27 # of the GNU General Public License, version 3 ("GPLv3").
30 # Please send patches to <config-patches@gnu.org>.
38 # https://git.savannah.gnu.org/cgit/config.git/plain/config.sub
[all …]
/freebsd/crypto/heimdal/
H A Dconfig.guess7 timestamp='2009-11-20'
10 # under the terms of the GNU General Public License as published by
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 # You should have received a copy of the GNU General Public License
21 # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
22 # 02110-1301, USA.
24 # As a special exception to the GNU General Public License, if you
31 # diff format) to <config-patches@gnu.org> and include a ChangeLog
39 # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD
41 me=`echo "$0" | sed -e 's,.*/,,'`
[all …]
/freebsd/contrib/libpcap/
H A Dconfig.sub3 # Copyright 1992-2024 Free Software Foundation, Inc.
7 timestamp='2024-01-01'
10 # under the terms of the GNU General Public License as published by
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, see <https://www.gnu.org/licenses/>.
22 # As a special exception to the GNU General Public License, if you
27 # of the GNU General Public License, version 3 ("GPLv3").
30 # Please send patches to <config-patches@gnu.org>.
38 # https://git.savannah.gnu.org/cgit/config.git/plain/config.sub
[all …]
/freebsd/contrib/ncurses/
H A Dconfig.sub3 # Copyright 1992-2023 Free Software Foundation, Inc.
7 timestamp='2023-12-02'
10 # under the terms of the GNU General Public License as published by
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, see <https://www.gnu.org/licenses/>.
22 # As a special exception to the GNU General Public License, if you
27 # of the GNU General Public License, version 3 ("GPLv3").
30 # Please send patches to <config-patches@gnu.org>.
38 # https://git.savannah.gnu.org/cgit/config.git/plain/config.sub
[all …]
/freebsd/contrib/tcpdump/
H A Dconfig.sub3 # Copyright 1992-2024 Free Software Foundation, Inc.
7 timestamp='2024-01-01'
10 # under the terms of the GNU General Public License as published by
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, see <https://www.gnu.org/licenses/>.
22 # As a special exception to the GNU General Public License, if you
27 # of the GNU General Public License, version 3 ("GPLv3").
30 # Please send patches to <config-patches@gnu.org>.
38 # https://git.savannah.gnu.org/cgit/config.git/plain/config.sub
[all …]
/freebsd/contrib/ldns/
H A Dconfig.sub3 # Copyright 1992-2022 Free Software Foundation, Inc.
7 timestamp='2022-01-03'
10 # under the terms of the GNU General Public License as published by
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, see <https://www.gnu.org/licenses/>.
22 # As a special exception to the GNU General Public License, if you
27 # of the GNU General Public License, version 3 ("GPLv3").
30 # Please send patches to <config-patches@gnu.org>.
38 # https://git.savannah.gnu.org/cgit/config.git/plain/config.sub
[all …]

1234567