Searched +full:- +full:dwith_gzfileop (Results 1 – 10 of 10) sorted by relevance
2 # zlib is copyright (C) 1995-2006 Jean-loup Gailly and Mark Adler5 # nmake -f win32/Makefile.msc (standard build)6 # nmake -f win32/Makefile.msc LOC=-DFOO (nonstandard build)25 CFLAGS = -nologo -MD -W3 -O2 -Oy- -Zi -Fd"zlib" $(LOC)27 -D_CRT_SECURE_NO_DEPRECATE \28 -D_CRT_NONSTDC_NO_DEPRECATE \29 -DX86_FEATURES \30 -DX86_PCLMULQDQ_CRC \31 -DX86_SSE2 \32 -DX86_SSE42_CRC_INTRIN \[all …]
2 # zlib is copyright (C) 1995-2006 Jean-loup Gailly and Mark Adler5 # nmake -f win32/Makefile.a64 (standard build)6 # nmake -f win32/Makefile.a64 LOC=-DFOO (nonstandard build)25 CFLAGS = -nologo -MD -W3 -O2 -Oy- -Zi -Fd"zlib" $(LOC)27 -D_CRT_SECURE_NO_DEPRECATE \28 -D_CRT_NONSTDC_NO_DEPRECATE \29 -DUNALIGNED_OK \30 -DUNALIGNED64_OK \31 -D_ARM64_WINAPI_PARTITION_DESKTOP_SDK_AVAILABLE=1 \32 -DARM_FEATURES \[all …]
2 # zlib is copyright (C) 1995-2006 Jean-loup Gailly and Mark Adler5 # nmake -f win32/Makefile.arm (standard build)6 # nmake -f win32/Makefile.arm LOC=-DFOO (nonstandard build)25 CFLAGS = -nologo -MD -W3 -O2 -Oy- -Zi -Fd"zlib" $(LOC)27 -D_CRT_SECURE_NO_DEPRECATE \28 -D_CRT_NONSTDC_NO_DEPRECATE \29 -DUNALIGNED_OK \30 -D_ARM_WINAPI_PARTITION_DESKTOP_SDK_AVAILABLE=1 \31 -DARM_FEATURES \33 LDFLAGS = -nologo -debug -incremental:no -opt:ref -manifest[all …]
4 GCC-10:5 runs-on: ubuntu-latest7 - uses: actions/checkout@v18 - name: Install packages (Ubuntu)10 sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y11 sudo apt-get update12 sudo apt-get install -y gcc-1013 - name: Generate project files15 …cmake . -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=OFF -DWITH_GZFILEOP=ON -DWITH_FUZZERS=OFF -…17 CC: gcc-10[all …]
6 runs-on: ubuntu-latest9 - name: Checkout repository (zlib-ng)12 - name: Generate project files (zlib-ng)14 …cmake . -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=OFF -DWITH_GZFILEOP=ON -DZLIB_COMPAT=ON -DZ…17 CFLAGS: -fPIC20 - name: Compile source code (zlib-ng)22 cmake --build . --config Release24 - name: Checkout repository (libpng)30 - name: Generate project files (libpng)33 …cmake . -DCMAKE_BUILD_TYPE=Release -DPNG_TESTS=ON -DPNG_STATIC=OFF -DZLIB_INCLUDE_DIR=.. -DZLIB_LI…[all …]
5 - '*'7 ci-cmake:9 runs-on: ${{ matrix.os }}11 fail-fast: false20 - name: Windows MSVC Win3221 os: windows-latest23 cmake-args: -A Win3224 deploy-name: win3226 - name: Windows MSVC Win32 Compat27 os: windows-latest[all …]
4 ci-cmake:6 runs-on: ${{ matrix.os }}8 fail-fast: false12 Ubuntu GCC OSB -O1,52 - name: Ubuntu GCC53 os: ubuntu-latest55 cmake-args: -DWITH_SANITIZERS=ON58 - name: Ubuntu GCC OSB -O159 os: ubuntu-latest61 cmake-args: -DWITH_SANITIZERS=ON[all …]
2 # Copyright (C) 1995-2016 Jean-loup Gailly, Mark Adler8 # If you want to build just a static library, use: ./configure --static17 CFLAGS=-O18 #CFLAGS=-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=719 #CFLAGS=-g -DZLIB_DEBUG20 #CFLAGS=-O3 -Wall -Wwrite-strings -Wpointer-arith -Wconversion \21 # -Wstrict-prototypes -Wmissing-prototypes23 SFLAGS=-O24 LDFLAGS=-L.25 LIBNAME1=libz-ng[all …]
30 string(REGEX REPLACE ".*#define[ \t]+ZLIB_VERSION[ \t]+\"([0-9]+.[0-9]+.[0-9]+).*\".*"32 string(REGEX REPLACE ".*#define[ \t]+ZLIBNG_VERSION[ \t]+\"([-0-9A-Za-z.]+)\".*"54 include(cmake/detect-arch.cmake)55 include(cmake/detect-sanitizer.cmake)62 # this should select the maximum generic optimisation on the current platform (i.e. -O3 for gcc/cla…85 …"Instruct the compiler to use the full instruction set on this host (gcc/clang -march=native)" OFF)122 add_feature_info(ZLIB_COMPAT ZLIB_COMPAT "Provide a zlib-compatible API")123 add_feature_info(WITH_GZFILEOP WITH_GZFILEOP "Compile with support for gzFile-related functions")139 add_definitions(-DZLIB_COMPAT)143 set(SUFFIX "-ng")[all …]
5 # If you want to build just a static library, use: ./configure --static8 # prefix=$HOME CC=cc CFLAGS="-O4" ./configure10 # (setenv prefix $HOME; setenv CC cc; setenv CFLAGS "-O4"; ./configure)17 echo -------------------- >> configure.log24 # set command prefix for cross-compilation25 if [ -n "${CHOST}" ]; then28 …"$(echo "${NORM_CHOST}" | sed -e 's/^[^-]*-\([^-]*\)$/\1/' -e 's/^[^-]*-[^-]*-\([^-]*\)$/\1/' -e '…29 CROSS_PREFIX="${CHOST}-"30 ARCH="$(echo "${NORM_CHOST}" | sed -e 's/-.*//')"32 ARCH="`uname -m`"[all …]