Searched +full:build +full:- +full:zstd +full:- +full:dll (Results 1 – 25 of 31) sorted by relevance
12
| /external/zstd/lib/ |
| D | README.md | 4 The __lib__ directory is split into several sub-directories, 10 …ventions](https://www.gnu.org/prep/standards/html_node/Makefile-Conventions.html#Makefile-Conventi… 12 - `make` : generates both static and dynamic libraries 13 - `make install` : install libraries and headers in target system directories 22 …by default the dynamic library is multithreaded and static library is single-threaded (for compati… 25 - set build macro `ZSTD_MULTITHREAD` (`-DZSTD_MULTITHREAD` for `gcc`) 26 - for POSIX systems : compile with pthread (`-pthread` compilation flag for `gcc`) 28 For convenience, we provide a build target to generate multi and single threaded libraries: 29 - Force enable multithreading on both dynamic and static libraries by appending `-mt` to the target… 30 - Force disable multithreading on both dynamic and static libraries by appending `-nomt` to the tar… [all …]
|
| D | Makefile | 5 # This source code is licensed under both the BSD-style license (found in the 8 # You may select, at your option, one of the above-listed licenses. 12 lib-release: 57 # Note: by default, the static library is built single-threaded and dynamic library is built 58 # multi-threaded. It is possible to force multi or single threaded builds by appending 59 # -mt or -nomt to the build target (like lib-mt for multi-threaded, lib-nomt for single-threaded). 62 CPPFLAGS_DYNLIB += -DZSTD_MULTITHREAD # dynamic library build defaults to multi-threaded 63 LDFLAGS_DYNLIB += -pthread 64 CPPFLAGS_STATICLIB += # static library build defaults to single-threaded 68 decompress/zstd_decompress_block.o : CFLAGS+=-fno-tree-vectorize [all …]
|
| /external/zstd/build/ |
| D | README.md | 6 The following projects are included with the zstd distribution: 7 - `cmake` - CMake project contributed by Artyom Dymchenko 8 - `VS2005` - Visual Studio 2005 Project (this project has been moved to the contrib directory and w… 9 - `VS2008` - Visual Studio 2008 project 10 - `VS2010` - Visual Studio 2010 project (which also works well with Visual Studio 2012, 2013, 2015) 11 - `VS_scripts` - command line scripts prepared for Visual Studio compilation without IDE 14 #### How to compile zstd with Visual Studio 17 2. Download the latest version of zstd from https://github.com/facebook/zstd/releases 19 4. Go to decompressed directory then to `projects` then `VS2010` and open `zstd.sln` 21 6. Change `Debug` to `Release` and if you have 64-bit Windows change also `Win32` to `x64`. [all …]
|
| /external/zstd/lib/dll/example/ |
| D | README.md | 1 # ZSTD Windows binary package 5 - `zstd.exe` : Command Line Utility, supporting gzip-like arguments 6 - `dll\libzstd.dll` : The ZSTD dynamic library (DLL) 7 - `dll\libzstd.lib` : The import library of the ZSTD dynamic library (DLL) for Visual C++ 8 - `example\` : The example of usage of the ZSTD library 9 - `include\` : Header files required by the ZSTD library 10 - `static\libzstd_static.lib` : The static ZSTD library (LIB) 14 Command Line Interface (CLI) supports gzip-like arguments. 17 Usage: zstd [arg] [input] [output] 19 The full list of commands for CLI can be obtained with `-h` or `-H`. The ratio can [all …]
|
| D | fullbench-dll.vcxproj | 1 <?xml version="1.0" encoding="utf-8"?> 2 <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/ms… 22 <ProjectGuid>{00000000-1CC8-4FD7-9281-6B8DBB9D3DF8}</ProjectGuid> 24 <RootNamespace>fullbench-dll</RootNamespace> 101 …<AdditionalLibraryDirectories>$(SolutionDir)..\dll;%(AdditionalLibraryDirectories)</AdditionalLibr… 120 …<AdditionalLibraryDirectories>$(SolutionDir)..\dll;%(AdditionalLibraryDirectories)</AdditionalLibr… 143 …<AdditionalLibraryDirectories>$(SolutionDir)..\dll;%(AdditionalLibraryDirectories)</AdditionalLibr… 167 …<AdditionalLibraryDirectories>$(SolutionDir)..\dll;%(AdditionalLibraryDirectories)</AdditionalLibr… 176 <ClInclude Include="..\include\zstd.h" />
|
| /external/zstd/tests/ |
| D | Makefile | 6 # This source code is licensed under both the BSD-style license (found in the 9 # You may select, at your option, one of the above-listed licenses. 12 # fullbench : Precisely measure speed for each zstd inner functions 13 # fullbench32: Same as fullbench, but forced to compile in 32-bits mode 14 # fuzzer : Test tool, to check zstd integrity on target platform 15 # fuzzer32: Same as fuzzer, but forced to compile in 32-bits mode 16 # paramgrill : parameter tester for zstd 17 # test-zstd-speed.py : script for testing zstd speed difference between commits 18 # versionsTest : compatibility test between zstd versions stored on Github (v0.1+) 19 # zstreamtest : Fuzzer test tool for zstd streaming API [all …]
|
| /external/zstd/build/VS2010/ |
| D | zstd.sln | 4 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zstd", "zstd\zstd.vcxproj", "{4E52A41A-F33B-4C… 6 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fuzzer", "fuzzer\fuzzer.vcxproj", "{6FD4352B-3… 8 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fullbench", "fullbench\fullbench.vcxproj", "{6… 10 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fullbench-dll", "fullbench-dll\fullbench-dll.v… 12 {00000000-94D5-4BF9-8A50-7BD9929A0850} = {00000000-94D5-4BF9-8A50-7BD9929A0850} 15 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "datagen", "datagen\datagen.vcxproj", "{037E781… 17 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libzstd", "libzstd\libzstd.vcxproj", "{8BFD815… 19 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libzstd-dll", "libzstd-dll\libzstd-dll.vcxproj… 29 {4E52A41A-F33B-4C7A-8C36-A1A6B4F4277C}.Debug|Win32.ActiveCfg = Debug|Win32 30 {4E52A41A-F33B-4C7A-8C36-A1A6B4F4277C}.Debug|Win32.Build.0 = Debug|Win32 [all …]
|
| /external/zstd/programs/ |
| D | Makefile | 5 # This source code is licensed under both the BSD-style license (found in the 8 # You may select, at your option, one of the above-listed licenses. 10 # zstd : Command Line Utility, supporting gzip-like arguments 11 # zstd32 : Same as zstd, but forced to compile in 32-bits mode 12 # zstd-nolegacy : zstd without support of decompression of legacy versions 13 # zstd-small : minimal zstd without dictionary builder and benchmark 14 # zstd-compress : compressor-only version of zstd 15 # zstd-decompress : decompressor-only version of zstd 19 zstd-release: 24 ifeq ($(shell $(CC) -v 2>&1 | $(GREP) -c "gcc version "), 1) [all …]
|
| /external/zstd/build/meson/lib/ |
| D | meson.build | 2 # Copyright (c) 2018-present Dima Krasner <dima@dimakrasner.com> 6 # This source code is licensed under both the BSD-style license (found in the 54 add_project_arguments('-DZSTD_DISABLE_ASM', language: 'c') 58 add_project_arguments('-DZSTD_LEGACY_SUPPORT=@0@'.format(legacy_level), 77 message('Enable multi-threading support') 78 add_project_arguments('-DZSTD_MULTITHREAD', language: 'c') 86 join_paths(zstd_rootdir, 'build/VS2010/libzstd-dll/libzstd-dll.rc'), 88 libzstd_c_args += ['-DZSTD_DLL_EXPORT=1', 89 '-DZSTD_HEAPMODE=0', 90 '-D_CONSOLE', [all …]
|
| /external/zstd/ |
| D | .gitignore | 11 *.dll 17 /zstd 26 *.zstd 33 # Build artefacts 34 contrib/linux-kernel/linux/ 38 buck-out/ 39 build-* 45 .clang-format 57 *.code-workspace
|
| D | CHANGELOG | 6 lib: reduce binary size with selective built-time exclusion, by @felixhandte 11 lib: fix zdict prototype mismatch in static_only mode, by @ldv-alt 12 lib: fix several bugs in magicless-format decoding, by @embg 13 cli: add common compressed file types to `--exclude-compressed`` by @daniellerozenblit 14 cli: fix mixing `-c` and `-o` commands with `--rm`, by @Cyan4973 15 cli: fix erroneous exclusion of hidden files with `--output-dir-mirror` by @felixhandte 20 build: cmake improvements by @terrelln, @sighingnow, @gjasny, @JohanMabille, @Saverio976, @gruenich… 21 build: bazel support, by @jondo2010 22 build: fix cross-compiling for AArch64 with lld by @jcelerier 23 build: fix Apple platform compatibility, by @nidhijaju [all …]
|
| /external/zstd/.github/workflows/ |
| D | dev-short-tests.yml | 1 name: dev-short-tests 2 # Faster tests: mostly build tests, along with some other 6 group: fast-${{ github.ref }} 7 cancel-in-progress: true 13 permissions: read-all 16 linux-kernel: 17 runs-on: ubuntu-latest 19 - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # tag=v4.1.1 20 - name: linux kernel, library + build + test 21 …run: make -C contrib/linux-kernel test CFLAGS="-Werror -Wunused-const-variable -Wunused-but-set-va… [all …]
|
| /external/swiftshader/third_party/llvm-16.0/llvm/lib/Support/ |
| D | CMakeLists.txt | 6 # ManagedStatic can be used to enable lazy-initialization of globals. 10 check_cxx_compiler_flag("-Werror=global-constructors" HAS_WERROR_GLOBAL_CTORS) 12 SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror=global-constructors") 20 string(REPLACE "-Werror=global-constructors" "" CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS}) 29 if(TARGET zstd::libzstd_shared AND NOT LLVM_USE_STATIC_ZSTD) 30 set(zstd_target zstd::libzstd_shared) 32 set(zstd_target zstd::libzstd_static) 54 # regular short library name, suitable for appending to a -l link flag. 79 # Delay load shell32.dll if possible to speed up process startup. 82 set (delayload_flags delayimp -delayload:shell32.dll -delayload:ole32.dll) [all …]
|
| /external/mesa3d/ |
| D | meson_options.txt | 1 # Copyright © 2017-2019 Intel Corporation 2 # SPDX-License-Identifier: MIT 16 'egl-native-platform', 27 'android-stub', 30 description : 'Build against android-stub', 34 'android-strict', 43 'android-libbacktrace', 56 'dri-drivers-path', 63 'dri-search-path', 67 'separated list. Default: dri-drivers-path.' [all …]
|
| D | meson.build | 1 # Copyright © 2017-2020 Intel Corporation 29 'b_ndebug=if-release', 33 'build.rust_std=2021', 45 error('`mirror` is the only build directory layout supported') 52 '-D__STDC_CONSTANT_MACROS', 53 '-D__STDC_FORMAT_MACROS', 54 '-D__STDC_LIMIT_MACROS', 55 '-DPACKAGE_VERSION="@0@"'.format(meson.project_version()), 56 '-DPACKAGE_BUGREPORT="https://gitlab.freedesktop.org/mesa/mesa/-/issues"', 64 with_moltenvk_dir = get_option('moltenvk-dir') [all …]
|
| /external/zstd/build/cmake/lib/ |
| D | CMakeLists.txt | 5 # This source code is licensed under both the BSD-style license (found in the 13 option(ZSTD_BUILD_STATIC "BUILD STATIC LIBRARIES" ON) 14 option(ZSTD_BUILD_SHARED "BUILD SHARED LIBRARIES" ON) 15 option(ZSTD_BUILD_COMPRESSION "BUILD COMPRESSION MODULE" ON) 16 option(ZSTD_BUILD_DECOMPRESSION "BUILD DECOMPRESSION MODULE" ON) 17 option(ZSTD_BUILD_DICTBUILDER "BUILD DICTBUILDER MODULE" ON) 18 option(ZSTD_BUILD_DEPRECATED "BUILD DEPRECATED MODULE" OFF) 33 message(SEND_ERROR "You need to build at least one flavor of libzstd") 40 add_compile_options(-DZSTD_DISABLE_ASM) 45 add_compile_options(-DZSTD_DISABLE_ASM) [all …]
|
| /external/bazelbuild-rules_python/python/ |
| D | repositories.bzl | 7 # http://www.apache.org/licenses/LICENSE-2.0 53 …"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skyli… 54 … "https://github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz", 126 working_directory = "zstd-{version}".format(version = rctx.attr.zstd_version) 129 [which_with_fail("make", rctx), "--jobs=4"], 136 … "Failed to compile 'zstd' from source for use in Python interpreter extraction. " + 140 zstd = "{working_directory}/zstd".format(working_directory = working_directory) 142 rctx.symlink(zstd, unzstd) 146 "--extract", 147 "--strip-components=2", [all …]
|
| /external/mesa3d/src/gfxstream/ |
| D | meson_options.txt | 2 # Copyright © 2017-2019 Intel Corporation 3 # SPDX-License-Identifier: MIT 17 'egl-native-platform', 28 'android-stub', 31 description : 'Build against android-stub', 35 'android-libbacktrace', 48 'dri-drivers-path', 55 'dri-search-path', 59 'separated list. Default: dri-drivers-path.' 71 'gallium-drivers', [all …]
|
| /external/curl/docs/libcurl/ |
| D | curl_version_info.md | 1 --- 3 SPDX-License-Identifier: curl 7 See-also: 8 - curl_version (3) 10 - All 11 --- 15 curl_version_info - returns runtime libcurl version info 37 or not, instead of using compile-time checks, as dynamic/DLL libraries can be 41 curl_global_init(3) has not been called. It is therefore not thread-safe 89 const char *cainfo; /* the built-in default CURLOPT_CAINFO, might [all …]
|
| /external/curl/docs/ |
| D | INSTALL.md | 1 <!-- 4 SPDX-License-Identifier: curl 5 --> 13 package. This document describes how to compile, build and install curl and 22 ./bootstrap-vcpkg.sh 33 the `GIT-INFO.md` file in the root directory for specific instructions on how 41 ./configure --with-openssl [--with-gnutls --with-wolfssl] 52 ./configure --help 57 ./configure --prefix=/path/to/curl/tree 63 ./configure --prefix=$HOME [all …]
|
| /external/zstd/build/VS2010/fullbench-dll/ |
| D | fullbench-dll.vcxproj | 1 <?xml version="1.0" encoding="utf-8"?> 2 <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/ms… 22 <ProjectGuid>{00000000-1CC8-4FD7-9281-6B8DBB9D3DF8}</ProjectGuid> 24 <RootNamespace>fullbench-dll</RootNamespace> 176 <ClInclude Include="..\..\..\lib\zstd.h" /> 182 <ProjectReference Include="..\libzstd-dll\libzstd-dll.vcxproj"> 183 <Project>{00000000-94d5-4bf9-8a50-7bd9929a0850}</Project>
|
| /external/zstd/build/VS2010/libzstd-dll/ |
| D | libzstd-dll.vcxproj | 1 <?xml version="1.0" encoding="utf-8"?> 2 <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/ms… 77 <ClInclude Include="..\..\..\lib\zstd.h" /> 93 <ResourceCompile Include="libzstd-dll.rc" /> 96 <ProjectGuid>{00000000-94D5-4BF9-8A50-7BD9929A0850}</ProjectGuid> 98 <RootNamespace>libzstd-dll</RootNamespace>
|
| /external/zstd/lib/legacy/ |
| D | zstd_v06.c | 5 * This source code is licensed under both the BSD-style license (found in the 8 * You may select, at your option, one of the above-listed licenses. 12 /*- Dependencies -*/ 24 low-level memory access routines 25 Copyright (C) 2013-2015, Yann Collet. 27 BSD 2-Clause License (https://opensource.org/licenses/bsd-license.php) 53 - FSE source repository : https://github.com/Cyan4973/FiniteStateEntropy 54 - Public forum : https://groups.google.com/forum/#!forum/lz4c 64 /*-**************************************** 73 /*-************************************************************** [all …]
|
| D | zstd_v05.c | 5 * This source code is licensed under both the BSD-style license (found in the 8 * You may select, at your option, one of the above-listed licenses. 12 /*- Dependencies -*/ 19 low-level memory access routines 20 Copyright (C) 2013-2015, Yann Collet. 22 BSD 2-Clause License (https://opensource.org/licenses/bsd-license.php) 48 - FSEv05 source repository : https://github.com/Cyan4973/FiniteStateEntropy 49 - Public forum : https://groups.google.com/forum/#!forum/lz4c 58 /*-**************************************** 65 /*-**************************************** [all …]
|
| /external/cronet/net/ |
| D | BUILD.gn | 2 # Use of this source code is governed by a BSD-style license that can be 5 import("//build/buildflag_header.gni") 6 import("//build/config/cast.gni") 7 import("//build/config/chromeos/ui_mode.gni") 8 import("//build/config/compiler/compiler.gni") 9 import("//build/config/cronet/config.gni") 10 import("//build/config/features.gni") 21 import("//build/config/android/config.gni") 22 import("//build/config/android/rules.gni") 25 import("//build/config/mac/mac_sdk.gni") [all …]
|
12