diff --git a/common/software.py b/common/software.py index a945bd67..905503c5 100644 --- a/common/software.py +++ b/common/software.py @@ -427,10 +427,10 @@ def _sqlite3_license(proj: Project) -> tuple[str, str]: remove_dirs=['doc', 'tests'], ), Project( - id='zlib', - display='zlib', - licenses=['README'], - remove_dirs=['contrib', 'doc', 'examples'], + id='zlib-ng', + display='zlib-ng', + licenses=['LICENSE.md'], + remove_dirs=['doc', 'test'], ), Project( id='zstd', diff --git a/deps/meson.build b/deps/meson.build index 055e5305..5d8f42cb 100644 --- a/deps/meson.build +++ b/deps/meson.build @@ -14,7 +14,6 @@ if not all_systems and system == 'darwin' # [dependency name, library name, version] or # [dependency name, library name, header with version, version define] overrides = [ - # zlib is handled automatically by dependency() # no define for libffi version; pick a value that will pass the checks ['libffi', 'ffi', '3.0.0'], ['libxml-2.0', 'xml2', 'libxml/xmlversion.h', 'LIBXML_DOTTED_VERSION'], @@ -42,8 +41,18 @@ if not all_systems and system == 'darwin' '-I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/ffi', language : ['c', 'cpp'], ) -else - subproject('zlib') +endif + +# ignore SDK zlib on macOS (except as a dependency of the other SDK libs) +meson.override_dependency( + 'zlib', + subproject( + 'zlib-ng', + default_options : ['tests=disabled', 'zlib-compat=true'], + ).get_variable('zlib_ng_dep'), +) + +if all_systems or system != 'darwin' subproject( 'libffi', default_options : ['tests=false'], diff --git a/subprojects/packagefiles/zlib-ng-meson.patch b/subprojects/packagefiles/zlib-ng-meson.patch new file mode 100644 index 00000000..83128be2 --- /dev/null +++ b/subprojects/packagefiles/zlib-ng-meson.patch @@ -0,0 +1,1211 @@ +--- /dev/null ++++ b/LICENSE.build +@@ -0,0 +1,19 @@ ++(C) 1995-2024 Jean-loup Gailly and Mark Adler ++ ++This software is provided 'as-is', without any express or implied ++warranty. In no event will the authors be held liable for any damages ++arising from the use of this software. ++ ++Permission is granted to anyone to use this software for any purpose, ++including commercial applications, and to alter it and redistribute it ++freely, subject to the following restrictions: ++ ++1. The origin of this software must not be misrepresented; you must not ++ claim that you wrote the original software. If you use this software ++ in a product, an acknowledgment in the product documentation would be ++ appreciated but is not required. ++ ++2. Altered source versions must be plainly marked as such, and must not be ++ misrepresented as being the original software. ++ ++3. This notice may not be removed or altered from any source distribution. +--- /dev/null ++++ b/get-version.py +@@ -0,0 +1,28 @@ ++#!/usr/bin/python3 ++ ++import argparse ++import os ++from pathlib import Path ++import re ++ ++parser = argparse.ArgumentParser() ++parser.add_argument('type', choices=['zlib', 'zlib-ng']) ++args = parser.parse_args() ++ ++if args.type == 'zlib': ++ regex = re.compile('#define ZLIB_VERSION "([0-9.]+)\\.zlib-ng"$') ++else: ++ regex = re.compile('#define ZLIBNG_VERSION "([0-9.]+)"$') ++ ++zlib_h_in = ( ++ Path(os.environ['MESON_SOURCE_ROOT']) / ++ os.environ['MESON_SUBDIR'] / ++ 'zlib.h.in' ++) ++for line in zlib_h_in.open(): ++ match = regex.match(line) ++ if match: ++ print(match.group(1)) ++ break ++else: ++ raise Exception('Specified version not found in ' + zlib_h_in.as_posix()) +--- /dev/null ++++ b/meson.build +@@ -0,0 +1,965 @@ ++project( ++ 'zlib-ng', ++ 'c', ++ version: run_command( ++ 'get-version.py', ++ 'zlib-ng', ++ capture: true, ++ check: true ++ ).stdout().strip(), ++ license: 'zlib', ++ meson_version: '>=0.60.0', ++ default_options: ['c_std=c11', 'optimization=2'], ++) ++ ++if get_option('b_lto') ++ error('LTO cannot be used with runtime CPU detection') ++endif ++ ++compile_args = [] ++link_args = [] ++pkg_config_cflags = [] ++arch_libs = [] ++ ++sym_prefix = {'ZLIB_SYMBOL_PREFIX': ''} ++general_section = 'General features' ++arch_section = 'Architecture-specific features' ++ ++with_zlib_compat = get_option('zlib-compat') ++if with_zlib_compat ++ compile_args += '-DZLIB_COMPAT' ++ suffix = '' ++ def_suffix = 'compat' ++ lib_version = run_command( ++ 'get-version.py', ++ 'zlib', ++ capture: true, ++ check: true ++ ).stdout().strip() ++ pkg_version = lib_version + '.zlib-ng' ++else ++ suffix = '-ng' ++ def_suffix = suffix ++ lib_version = meson.project_version() ++ pkg_version = lib_version ++endif ++summary('Library version', pkg_version, section: general_section) ++summary( ++ 'zlib compatibility', ++ with_zlib_compat, ++ section: general_section, ++ bool_yn: true ++) ++ ++cc = meson.get_compiler('c') ++ ++link_args += cc.get_supported_link_arguments( ++ '-Wl,--version-script,@0@/zlib@1@.map'.format( ++ meson.current_source_dir(), suffix ++ ), ++ # force-disable LTO at link time in case -flto was passed manually ++ '-fno-lto', ++) ++ ++largefile_args = ['-D_LARGEFILE64_SOURCE=1', '-D__USE_LARGEFILE64'] ++foreach type: ['off64_t', '_off64_t'] ++ if cc.has_type( ++ type, ++ args: largefile_args, ++ prefix: '#include ' ++ ) ++ compile_args += largefile_args ++ break ++ endif ++endforeach ++ ++foreach h: [ ++ 'linux/auxvec.h', ++ 'sys/auxv.h', ++ 'sys/sdt.h', ++ 'arm_acle.h', ++] ++ found = cc.has_header(h) ++ set_variable('have_' + h.underscorify(), found) ++ if found ++ compile_args += '-DHAVE_' + h.to_upper().underscorify() ++ endif ++endforeach ++ ++foreach f: [ ++ ['__builtin_assume_aligned', ['-DHAVE_BUILTIN_ASSUME_ALIGNED'], []], ++ ['__builtin_ctz', ['-DHAVE_BUILTIN_CTZ'], []], ++ ['__builtin_ctzll', ['-DHAVE_BUILTIN_CTZLL'], []], ++ ['fseeko', [], ['-DNO_FSEEKO']], ++ ['strerror', [], ['-DNO_STRERROR']], ++] ++ if cc.has_function(f[0]) ++ compile_args += f[1] ++ else ++ compile_args += f[2] ++ endif ++endforeach ++ ++foreach s: [ ++ ['stdlib.h', 'aligned_alloc', ['-D_ISOC11_SOURCE=1'], ['-DHAVE_ALIGNED_ALLOC']], ++ ['stdlib.h', 'posix_memalign', ['-D_POSIX_C_SOURCE=200112L'], ['-DHAVE_POSIX_MEMALIGN']], ++] ++ if cc.has_header_symbol(s[0], s[1], args: s[2]) ++ compile_args += s[3] ++ endif ++endforeach ++ ++foreach attr: [ ++ ['aligned', '-DHAVE_ATTRIBUTE_ALIGNED'], ++ ['visibility:hidden', '-DHAVE_VISIBILITY_HIDDEN'], ++ ['visibility:internal', '-DHAVE_VISIBILITY_INTERNAL'], ++] ++ if cc.has_function_attribute(attr[0]) ++ compile_args += attr[1] ++ endif ++endforeach ++ ++foreach opt: [ ++ ['unaligned', 'Unaligned reads allowed', [], ['-DNO_UNALIGNED']], ++ ['inflate-strict', 'Inflate strict distance checking', ['-DINFLATE_STRICT'], []], ++ ['inflate-allow-invalid-dist', 'Zero fill for inflate invalid distances', ['-DINFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR'], []], ++] ++ enable = get_option(opt[0]) ++ if enable ++ compile_args += opt[2] ++ else ++ compile_args += opt[3] ++ endif ++ summary(opt[1], enable, section: general_section, bool_yn: true) ++endforeach ++ ++src = [ ++ 'arch/generic/adler32_c.c', ++ 'arch/generic/adler32_fold_c.c', ++ 'arch/generic/chunkset_c.c', ++ 'arch/generic/compare256_c.c', ++ 'arch/generic/crc32_braid_c.c', ++ 'arch/generic/crc32_fold_c.c', ++ 'arch/generic/slide_hash_c.c', ++ 'adler32.c', ++ 'compress.c', ++ 'cpu_features.c', ++ 'crc32.c', ++ 'crc32_braid_comb.c', ++ 'deflate.c', ++ 'deflate_fast.c', ++ 'deflate_huff.c', ++ 'deflate_medium.c', ++ 'deflate_quick.c', ++ 'deflate_rle.c', ++ 'deflate_slow.c', ++ 'deflate_stored.c', ++ 'functable.c', ++ 'infback.c', ++ 'inflate.c', ++ 'inftrees.c', ++ 'insert_string.c', ++ 'insert_string_roll.c', ++ 'trees.c', ++ 'uncompr.c', ++ 'zutil.c', ++] ++ ++includedir = get_option('includedir') ++ ++zconf_cmd = ['process-zconf.py', '@INPUT0@'] ++if cc.has_header('unistd.h') ++ zconf_cmd += '--have-unistd' ++endif ++if not cc.has_type('ptrdiff_t', prefix: '#include ') ++ zconf_cmd += ['--ptrdiff-type', 'uint@0@_t'.format(8 * cc.sizeof('void *'))] ++endif ++configure_file( ++ command: zconf_cmd, ++ input: 'zconf@0@.h.in'.format(suffix), ++ output: 'zconf@0@.h'.format(suffix), ++ capture: true, ++ install: true, ++ install_dir: includedir, ++ # for meson < 0.64 ++ install_tag: 'devel', ++) ++ ++configure_file( ++ input: 'zlib@0@.h.in'.format(suffix), ++ output: 'zlib@0@.h'.format(suffix), ++ configuration: sym_prefix, ++ install: true, ++ install_dir: includedir, ++ # for meson < 0.64 ++ install_tag: 'devel', ++) ++ ++configure_file( ++ input: 'zlib_name_mangling.h.empty', ++ output: 'zlib_name_mangling@0@.h'.format(suffix), ++ copy: true, ++ install: true, ++ install_dir: includedir, ++ # for meson < 0.64 ++ install_tag: 'devel', ++) ++ ++with_gzfileop = get_option('gzfileop') or get_option('zlib-compat') ++if with_gzfileop ++ compile_args += '-DWITH_GZFILEOP' ++ pkg_config_cflags += '-DWITH_GZFILEOP' ++ src += configure_file( ++ input: 'gzread.c.in', ++ output: 'gzread.c', ++ configuration: sym_prefix ++ ) ++ src += ['gzlib.c', 'gzwrite.c'] ++endif ++summary( ++ 'gzFile functions', ++ with_gzfileop, ++ section: general_section, ++ bool_yn: true ++) ++ ++cpu_family = host_machine.cpu_family() ++system = host_machine.system() ++cc_id = cc.get_id() ++cc_syntax = cc.get_argument_syntax() ++ ++if system == 'windows' ++ src += import('windows').compile_resources( ++ 'win32/zlib@0@1.rc'.format(suffix), ++ include_directories: include_directories('.') ++ ) ++ ++ compile_args += ['-D_CRT_SECURE_NO_DEPRECATE', '-D_CRT_NONSTDC_NO_DEPRECATE'] ++ if get_option('default_library') != 'static' ++ compile_args += '-DZLIB_DLL' ++ endif ++endif ++ ++def = configure_file( ++ input: 'win32/zlib@0@.def.in'.format(def_suffix), ++ output: 'zlib.def', ++ configuration: sym_prefix, ++) ++ ++if cpu_family in ['arm', 'aarch64'] ++ summary('Architecture', 'ARM', section: arch_section) ++ archdir = 'arch/arm' ++ compile_args += '-DARM_FEATURES' ++ src += archdir / 'arm_features.c' ++ ++ if system == 'linux' ++ found_crc = false ++ found_neon = false ++ if cpu_family == 'aarch64' ++ auxtests = [ ++ ['crc', ['sys/auxv.h'], 'AT_HWCAP', 'HWCAP_CRC32', '-DARM_AUXV_HAS_CRC32'], ++ ] ++ else ++ auxtests = [ ++ ['crc', ['sys/auxv.h'], 'AT_HWCAP2', 'HWCAP2_CRC32', '-DARM_AUXV_HAS_CRC32'], ++ ['crc', ['sys/auxv.h', 'asm/hwcap.h'], 'AT_HWCAP2', 'HWCAP2_CRC32', ['-DARM_AUXV_HAS_CRC32', '-DARM_ASM_HWCAP']], ++ ['neon', ['sys/auxv.h'], 'AT_HWCAP', 'HWCAP_ARM_NEON', '-DARM_AUXV_HAS_NEON'], ++ ['neon', ['sys/auxv.h'], 'AT_HWCAP', 'HWCAP_NEON', '-DARM_AUXV_HAS_NEON'], ++ ] ++ endif ++ foreach auxtest: auxtests ++ if get_variable('found_' + auxtest[0]) ++ continue ++ endif ++ testprog = '' ++ foreach include: auxtest[1] ++ testprog += '#include <@0@>\n'.format(include) ++ endforeach ++ testprog += 'int main() {return (getauxval(@0@) & @1@);}'.format( ++ auxtest[2], auxtest[3] ++ ) ++ if cc.compiles(testprog) ++ compile_args += auxtest[4] ++ set_variable('found_' + auxtest[0], true) ++ endif ++ endforeach ++ if not found_crc ++ message('Cannot detect hardware CRC32 support with getauxval()') ++ endif ++ if cpu_family == 'arm' and not found_neon ++ message('Cannot detect NEON support with getauxval()') ++ endif ++ endif ++ if cc_id == 'msvc' ++ compile_args += '-D_ARM_WINAPI_PARTITION_DESKTOP_SDK_AVAILABLE' ++ endif ++ ++ acleflags = [] ++ if cc.has_argument('-march=armv8-a+crc') ++ acleflags = ['-march=armv8-a+crc'] ++ elif cc.has_argument('-march=armv8-a+crc+simd') ++ acleflags = ['-march=armv8-a+crc+simd'] ++ endif ++ want_acle = get_option('acle') ++ have_acle = want_acle.allowed() and cc.compiles( ++ '''#if defined(_MSC_VER) ++ #include ++ #else ++ #include ++ #endif ++ unsigned int f(unsigned int a, unsigned int b) { ++ return __crc32w(a, b); ++ } ++ int main(void) { return 0; }''', ++ args: acleflags, ++ ) ++ if have_acle ++ compile_args += '-DARM_ACLE' ++ arch_libs += static_library( ++ 'acle', ++ archdir / 'crc32_acle.c', ++ c_args: compile_args + acleflags, ++ link_args: link_args, ++ ) ++ endif ++ want_acle.require(have_acle) ++ summary('ACLE', have_acle, section: arch_section, bool_yn: true) ++ ++ neonflags = [] ++ if cc_id == 'msvc' ++ if cpu_family == 'arm' ++ neonflags = ['/arch:VFPv4'] ++ endif ++ else ++ if cpu_family == 'aarch64' ++ neonflags = ['-march=armv8-a+simd'] ++ else ++ neonflags = ['-mfpu=neon'] ++ endif ++ endif ++ want_neon = get_option('neon') ++ have_neon = want_neon.allowed() and cc.compiles( ++ '''#if defined(_M_ARM64) || defined(_M_ARM64EC) ++ # include ++ #else ++ # include ++ #endif ++ int main() { return 0; }''', ++ args: neonflags, ++ ) ++ if have_neon ++ compile_args += '-DARM_NEON' ++ if cc_id == 'msvc' ++ compile_args += '-D__ARM_NEON__' ++ endif ++ if cc.compiles( ++ '''#if defined(_MSC_VER) && (defined(_M_ARM64) || defined(_M_ARM64EC)) ++ # include ++ #else ++ # include ++ #endif ++ int32x4x4_t f(int var[16]) { return vld1q_s32_x4(var); } ++ int main(void) { return 0; }''', ++ args: neonflags ++ ) ++ compile_args += '-DARM_NEON_HASLD4' ++ endif ++ arch_libs += static_library( ++ 'neon', ++ archdir / 'adler32_neon.c', ++ archdir / 'chunkset_neon.c', ++ archdir / 'compare256_neon.c', ++ archdir / 'slide_hash_neon.c', ++ c_args: compile_args + neonflags, ++ link_args: link_args, ++ ) ++ endif ++ want_neon.require(have_neon) ++ summary('NEON', have_neon, section: arch_section, bool_yn: true) ++ ++ if cpu_family == 'arm' ++ # Upstream explicitly sets -march=armv6, but this also requires ++ # -mfloat-abi=soft since armv6 doesn't require an FPU. Upstream deals ++ # with this by defaulting the entire library to soft-float on 32-bit ARM, ++ # overriding the compiler's default. Since armv6 is probably not newer ++ # than the actual target arch, we instead skip setting arch flags at all. ++ have_armv6_asm = cc.compiles( ++ '''unsigned int f(unsigned int a, unsigned int b) { ++ unsigned int c; ++ __asm__ __volatile__ ( "uqsub16 %0, %1, %2" : "=r" (c) : "r" (a), "r" (b) ); ++ return (int)c; ++ } ++ int main(void) { return f(1,2); }''' ++ ) ++ have_armv6_intrin = cc.compiles( ++ '''#if defined(_MSC_VER) ++ #include ++ #else ++ #include ++ #endif ++ unsigned int f(unsigned int a, unsigned int b) { ++ #if defined(_MSC_VER) ++ return _arm_uqsub16(a, b); ++ #else ++ return __uqsub16(a, b); ++ #endif ++ } ++ int main(void) { return f(1,2); }''' ++ ) ++ want_armv6 = get_option('armv6') ++ have_armv6 = want_armv6.allowed() and (have_armv6_asm or have_armv6_intrin) ++ if have_armv6 ++ compile_args += '-DARM_SIMD' ++ if have_armv6_intrin ++ compile_args += '-DARM_SIMD_INTRIN' ++ endif ++ src += archdir / 'slide_hash_armv6.c' ++ endif ++ want_armv6.require(have_armv6) ++ summary('ARMv6', have_armv6, section: arch_section, bool_yn: true) ++ endif ++ ++elif cpu_family in ['ppc', 'ppc64'] ++ summary('Architecture', 'Power', section: arch_section) ++ archdir = 'arch/power' ++ src += archdir / 'power_features.c' ++ ++ altivecflags = [] ++ want_altivec = get_option('altivec') ++ foreach flag: ['-maltivec', '-mno-vsx'] ++ if want_altivec.allowed() and cc.compiles( ++ '''#include ++ int main(void) ++ { ++ vector int a = vec_splats(0); ++ vector int b = vec_splats(0); ++ a = vec_add(a, b); ++ return 0; ++ }''', ++ args: altivecflags + flag ++ ) ++ altivecflags += flag ++ endif ++ endforeach ++ have_altivec = altivecflags.contains('-maltivec') and cc.compiles( ++ '''#include ++ #ifdef __FreeBSD__ ++ #include ++ #endif ++ int main() { ++ #ifdef __FreeBSD__ ++ unsigned long hwcap; ++ elf_aux_info(AT_HWCAP, &hwcap, sizeof(hwcap)); ++ return (hwcap & PPC_FEATURE_HAS_ALTIVEC); ++ #else ++ return (getauxval(AT_HWCAP) & PPC_FEATURE_HAS_ALTIVEC); ++ #endif ++ }''', ++ args: altivecflags ++ ) ++ if have_altivec ++ compile_args += ['-DPPC_FEATURES', '-DPPC_VMX'] ++ arch_libs += static_library( ++ 'altivec', ++ archdir / 'adler32_vmx.c', ++ archdir / 'slide_hash_vmx.c', ++ c_args: compile_args + altivecflags, ++ link_args: link_args, ++ ) ++ endif ++ want_altivec.require(have_altivec) ++ summary('AltiVec', have_altivec, section: arch_section, bool_yn: true) ++ ++ power8flags = ['-mcpu=power8'] ++ want_power8 = get_option('power8') ++ have_power8 = want_power8.allowed() and cc.compiles( ++ '''#include ++ #ifdef __FreeBSD__ ++ #include ++ #endif ++ int main() { ++ #ifdef __FreeBSD__ ++ unsigned long hwcap; ++ elf_aux_info(AT_HWCAP2, &hwcap, sizeof(hwcap)); ++ return (hwcap & PPC_FEATURE2_ARCH_2_07); ++ #else ++ return (getauxval(AT_HWCAP2) & PPC_FEATURE2_ARCH_2_07); ++ #endif ++ }''', ++ args: power8flags ++ ) ++ if want_power8.allowed() and not have_power8 and have_linux_auxvec_h and cc.compiles( ++ '''#include ++ #include ++ int main() { ++ return (getauxval(AT_HWCAP2) & PPC_FEATURE2_ARCH_2_07); ++ }''', ++ args: power8flags ++ ) ++ have_power8 = true ++ compile_args += '-DPOWER_NEED_AUXVEC_H' ++ endif ++ if have_power8 ++ compile_args += ['-DPOWER_FEATURES', '-DPOWER8_VSX'] ++ power8_src = [ ++ archdir / 'adler32_power8.c', ++ archdir / 'chunkset_power8.c', ++ archdir / 'slide_hash_power8.c', ++ ] ++ if cpu_family == 'ppc64' ++ compile_args += '-DPOWER8_VSX_CRC32' ++ power8_src += archdir / 'crc32_power8.c' ++ endif ++ arch_libs += static_library( ++ 'power8', ++ power8_src, ++ c_args: compile_args + power8flags, ++ link_args: link_args, ++ ) ++ endif ++ want_power8.require(have_power8) ++ summary('POWER8', have_power8, section: arch_section, bool_yn: true) ++ ++ power9flags = ['-mcpu=power9'] ++ want_power9 = get_option('power9') ++ have_power9 = want_power9.allowed() and cc.compiles( ++ '''#include ++ #ifdef __FreeBSD__ ++ #include ++ #endif ++ int main() { ++ #ifdef __FreeBSD__ ++ unsigned long hwcap; ++ elf_aux_info(AT_HWCAP2, &hwcap, sizeof(hwcap)); ++ return (hwcap & PPC_FEATURE2_ARCH_3_00); ++ #else ++ return (getauxval(AT_HWCAP2) & PPC_FEATURE2_ARCH_3_00); ++ #endif ++ }''', ++ args: power9flags ++ ) ++ if want_power9.allowed() and not have_power9 and have_linux_auxvec_h and cc.compiles( ++ '''#include ++ #include ++ int main() { ++ return (getauxval(AT_HWCAP2) & PPC_FEATURE2_ARCH_3_00); ++ }''', ++ args: power9flags ++ ) ++ have_power9 = true ++ compile_args += '-DPOWER_NEED_AUXVEC_H' ++ endif ++ if have_power9 ++ compile_args += ['-DPOWER_FEATURES', '-DPOWER9'] ++ arch_libs += static_library( ++ 'power9', ++ archdir / 'compare256_power9.c', ++ c_args: compile_args + power9flags, ++ link_args: link_args, ++ ) ++ endif ++ want_power9.require(have_power9) ++ summary('POWER9', have_power9, section: arch_section, bool_yn: true) ++ ++elif cpu_family in ['riscv32', 'riscv64'] ++ summary('Architecture', 'RISC-V', section: arch_section) ++ archdir = 'arch/riscv' ++ rvvflags = ['-march=rv64gcv'] ++ want_rvv = get_option('rvv') ++ have_rvv = want_rvv.allowed() and cc.check_header( ++ 'riscv_vector.h', ++ args: rvvflags ++ ) ++ if have_rvv ++ compile_args += ['-DRISCV_FEATURES', '-DRISCV_RVV'] ++ arch_libs += static_library( ++ 'rvv', ++ archdir / 'adler32_rvv.c', ++ archdir / 'chunkset_rvv.c', ++ archdir / 'compare256_rvv.c', ++ archdir / 'riscv_features.c', ++ archdir / 'slide_hash_rvv.c', ++ c_args: compile_args + rvvflags, ++ link_args: link_args, ++ ) ++ endif ++ want_rvv.require(have_rvv) ++ summary('RVV', have_rvv, section: arch_section, bool_yn: true) ++ ++elif cpu_family in ['s390', 's390x'] ++ summary('Architecture', 'S390', section: arch_section) ++ archdir = 'arch/s390' ++ have_s390 = cc.compiles( ++ '''#include ++ #ifndef HWCAP_S390_VXRS ++ #define HWCAP_S390_VXRS (1 << 11) ++ #endif ++ int main() { ++ return (getauxval(AT_HWCAP) & HWCAP_S390_VXRS); ++ }''' ++ ) ++ if have_s390 ++ compile_args += '-DS390_FEATURES' ++ src += archdir / 's390_features.c' ++ endif ++ summary('S390', have_s390, section: arch_section, bool_yn: true) ++ ++ foreach direction: ['deflate', 'inflate'] ++ # off by default ++ enable = get_option('dfltcc-' + direction).enabled() ++ if enable ++ compile_args += '-DS390_DFLTCC_' + direction.to_upper() ++ src += archdir / 'dfltcc_@0@.c'.format(direction) ++ endif ++ summary('DFLTCC ' + direction, enable, section: arch_section, bool_yn: true) ++ endforeach ++ ++ vgfmaflags = ['-march=z13'] ++ if cc_id == 'gcc' ++ vgfmaflags += '-mzarch' ++ elif cc_id == 'clang' ++ vgfmaflags += '-fzvector' ++ endif ++ want_crc32_vx = get_option('crc32-vx') ++ have_crc32_vx = want_crc32_vx.allowed() and cc.compiles( ++ '''#include ++ int main(void) { ++ unsigned long long a __attribute__((vector_size(16))) = { 0 }; ++ unsigned long long b __attribute__((vector_size(16))) = { 0 }; ++ unsigned char c __attribute__((vector_size(16))) = { 0 }; ++ c = vec_gfmsum_accum_128(a, b, c); ++ return c[0]; ++ }''', ++ args: vgfmaflags, ++ ) ++ if have_crc32_vx ++ compile_args += '-DS390_CRC32_VX' ++ arch_libs += static_library( ++ 'crc32vx', ++ archdir / 'crc32-vx.c', ++ c_args: compile_args + vgfmaflags, ++ link_args: link_args, ++ ) ++ endif ++ want_crc32_vx.require(have_crc32_vx) ++ summary('CRC32-VX', have_crc32_vx, section: arch_section, bool_yn: true) ++ ++elif cpu_family in ['x86', 'x86_64'] ++ summary('Architecture', 'x86', section: arch_section) ++ archdir = 'arch/x86' ++ compile_args += '-DX86_FEATURES' ++ ++ xsaveflags = [] ++ if cc_id != 'msvc' and not cc_id.startswith('intel') ++ xsaveflags = ['-mxsave'] ++ endif ++ have_xsave = cc.compiles( ++ '''#ifdef _MSC_VER ++ # include ++ #elif __GNUC__ == 8 && __GNUC_MINOR__ > 1 ++ # include ++ #else ++ # include ++ #endif ++ unsigned int f(unsigned int a) { return (int) _xgetbv(a); } ++ int main(void) { return 0; }''', ++ args: xsaveflags, ++ ) and not (cc_id == 'gcc' and cc.version().version_compare('< 8.2')) ++ if have_xsave ++ compile_args += '-DX86_HAVE_XSAVE_INTRIN' ++ else ++ xsaveflags = [] ++ endif ++ summary('XSAVE', have_xsave, section: arch_section, bool_yn: true) ++ arch_libs += static_library( ++ 'x86', ++ archdir / 'x86_features.c', ++ c_args: compile_args + xsaveflags, ++ link_args: link_args, ++ ) ++ ++ sse2flags = [] ++ if cpu_family == 'x86' ++ if cc_id == 'msvc' ++ sse2flags = ['/arch:SSE2'] ++ else ++ sse2flags = ['-msse2'] ++ endif ++ endif ++ want_sse2 = get_option('sse2') ++ have_sse2 = want_sse2.allowed() and cc.compiles( ++ '''#include ++ __m128i f(__m128i x, __m128i y) { return _mm_sad_epu8(x, y); } ++ int main(void) { return 0; }''', ++ args: sse2flags, ++ ) ++ if have_sse2 ++ compile_args += '-DX86_SSE2' ++ if cpu_family == 'x86' ++ want_force_sse2 = get_option('force-sse2') ++ if want_force_sse2 ++ compile_args += '-DX86_NOCHECK_SSE2' ++ endif ++ summary( ++ 'Assume SSE2', ++ want_force_sse2, ++ section: arch_section, ++ bool_yn: true ++ ) ++ endif ++ arch_libs += static_library( ++ 'sse2', ++ archdir / 'chunkset_sse2.c', ++ archdir / 'compare256_sse2.c', ++ archdir / 'slide_hash_sse2.c', ++ c_args: compile_args + sse2flags, ++ link_args: link_args, ++ ) ++ endif ++ want_sse2.require(have_sse2) ++ summary('SSE2', have_sse2, section: arch_section, bool_yn: true) ++ ++ ssse3flags = [] ++ if cc_syntax == 'msvc' and cc_id.startswith('intel') ++ ssse3flags = ['/arch:SSSE3'] ++ elif cc_id != 'msvc' ++ ssse3flags = ['-mssse3'] ++ endif ++ want_ssse3 = get_option('ssse3').require(have_sse2) ++ have_ssse3 = want_ssse3.allowed() and cc.compiles( ++ '''#include ++ __m128i f(__m128i u) { ++ __m128i v = _mm_set1_epi32(1); ++ return _mm_hadd_epi32(u, v); ++ } ++ int main(void) { return 0; }''', ++ args: ssse3flags, ++ ) ++ if have_ssse3 ++ compile_args += '-DX86_SSSE3' ++ arch_libs += static_library( ++ 'ssse3', ++ archdir / 'adler32_ssse3.c', ++ archdir / 'chunkset_ssse3.c', ++ c_args: compile_args + ssse3flags, ++ link_args: link_args, ++ ) ++ endif ++ want_ssse3.require(have_ssse3) ++ summary('SSSE3', have_ssse3, section: arch_section, bool_yn: true) ++ ++ sse42flags = [] ++ if cc_syntax == 'msvc' and cc_id.startswith('intel') ++ sse42flags = ['/arch:SSE4.2'] ++ elif cc_id != 'msvc' ++ sse42flags = ['-msse4.2'] ++ endif ++ want_sse42 = get_option('sse42').require(have_ssse3) ++ have_sse42 = want_sse42.allowed() and cc.compiles( ++ '''#include ++ unsigned int f(unsigned int a, unsigned int b) { return _mm_crc32_u32(a, b); } ++ int main(void) { return 0; }''', ++ args: sse42flags, ++ ) ++ if have_sse42 ++ compile_args += '-DX86_SSE42' ++ arch_libs += static_library( ++ 'sse42', ++ archdir / 'adler32_sse42.c', ++ c_args: compile_args + sse42flags, ++ link_args: link_args, ++ ) ++ endif ++ want_sse42.require(have_sse42) ++ summary('SSE4.2', have_sse42, section: arch_section, bool_yn: true) ++ ++ pclmulflags = [] ++ if cc_id != 'msvc' ++ pclmulflags = ['-mpclmul'] ++ endif ++ # The pclmul code currently crashes on Mac in 32bit mode. Avoid for now. ++ want_pclmulqdq = get_option('pclmulqdq').require( ++ have_sse42 and ++ not (system == 'darwin' and cpu_family == 'x86') ++ ) ++ have_pclmulqdq = want_pclmulqdq.allowed() and cc.compiles( ++ '''#include ++ #include ++ __m128i f(__m128i a, __m128i b) { return _mm_clmulepi64_si128(a, b, 0x10); } ++ int main(void) { return 0; }''', ++ args: pclmulflags, ++ ) ++ if have_pclmulqdq ++ compile_args += '-DX86_PCLMULQDQ_CRC' ++ arch_libs += static_library( ++ 'pclmulqdq', ++ archdir / 'crc32_pclmulqdq.c', ++ c_args: compile_args + sse42flags + pclmulflags, ++ link_args: link_args, ++ ) ++ endif ++ want_pclmulqdq.require(have_pclmulqdq) ++ summary('PCLMULQDQ', have_pclmulqdq, section: arch_section, bool_yn: true) ++ ++ if cc_id == 'msvc' ++ avx2flags = ['/arch:AVX2'] ++ else ++ avx2flags = ['-mavx2'] ++ endif ++ want_avx2 = get_option('avx2').require(have_sse42) ++ have_avx2 = want_avx2.allowed() and cc.compiles( ++ '''#include ++ __m256i f(__m256i x) { ++ const __m256i y = _mm256_set1_epi16(1); ++ return _mm256_subs_epu16(x, y); ++ } ++ int main(void) { return 0; }''', ++ args: avx2flags, ++ ) ++ if have_avx2 ++ compile_args += '-DX86_AVX2' ++ arch_libs += static_library( ++ 'avx2', ++ archdir / 'adler32_avx2.c', ++ archdir / 'chunkset_avx2.c', ++ archdir / 'compare256_avx2.c', ++ archdir / 'slide_hash_avx2.c', ++ c_args: compile_args + avx2flags, ++ link_args: link_args, ++ ) ++ endif ++ want_avx2.require(have_avx2) ++ summary('AVX2', have_avx2, section: arch_section, bool_yn: true) ++ ++ if cc_id == 'msvc' ++ avx512flags = ['/arch:AVX512'] ++ else ++ avx512flags = ['-mavx512f', '-mavx512dq', '-mavx512bw', '-mavx512vl'] ++ # For CPUs that can benefit from AVX512, it seems GCC generates suboptimal ++ # instruction scheduling unless you specify a reasonable -mtune= target ++ foreach mtune: ['-mtune=cascadelake', '-mtune=skylake-avx512'] ++ if cc.has_argument(mtune) ++ avx512flags += mtune ++ break ++ endif ++ endforeach ++ endif ++ want_avx512 = get_option('avx512').require(have_avx2) ++ have_avx512 = want_avx512.allowed() and cc.compiles( ++ '''#include ++ __m512i f(__m512i y) { ++ __m512i x = _mm512_set1_epi8(2); ++ return _mm512_sub_epi8(x, y); ++ } ++ int main(void) { return 0; }''', ++ args: avx512flags, ++ ) ++ if have_avx512 ++ compile_args += '-DX86_AVX512' ++ arch_libs += static_library( ++ 'avx512', ++ archdir / 'adler32_avx512.c', ++ c_args: compile_args + avx512flags, ++ link_args: link_args, ++ ) ++ endif ++ want_avx512.require(have_avx512) ++ summary('AVX512', have_avx512, section: arch_section, bool_yn: true) ++ ++ if cc_id == 'msvc' ++ avx512vnniflags = ['/arch:AVX512'] ++ else ++ avx512vnniflags = ['-mavx512f', '-mavx512dq', '-mavx512bw', '-mavx512vl', '-mavx512vnni'] ++ # For CPUs that can benefit from AVX512, it seems GCC generates suboptimal ++ # instruction scheduling unless you specify a reasonable -mtune= target ++ foreach mtune: ['-mtune=cascadelake', '-mtune=skylake-avx512'] ++ if cc.has_argument(mtune) ++ avx512vnniflags += mtune ++ break ++ endif ++ endforeach ++ endif ++ want_avx512vnni = get_option('avx512vnni').require(have_avx2) ++ have_avx512vnni = want_avx512vnni.allowed() and cc.compiles( ++ '''#include ++ __m512i f(__m512i x, __m512i y) { ++ __m512i z = _mm512_setzero_epi32(); ++ return _mm512_dpbusd_epi32(z, x, y); ++ } ++ int main(void) { return 0; }''', ++ args: avx512vnniflags, ++ ) ++ if have_avx512vnni ++ compile_args += '-DX86_AVX512VNNI' ++ arch_libs += static_library( ++ 'avx512vnni', ++ archdir / 'adler32_avx512_vnni.c', ++ c_args: compile_args + avx512vnniflags, ++ link_args: link_args, ++ ) ++ endif ++ want_avx512vnni.require(have_avx512vnni) ++ summary('AVX512-VNNI', have_avx512vnni, section: arch_section, bool_yn: true) ++ ++ vpclmulflags = [] ++ if cc_id != 'msvc' ++ vpclmulflags = ['-mvpclmulqdq', '-mavx512f'] ++ endif ++ want_vpclmulqdq = get_option('vpclmulqdq').require( ++ have_avx512 and ++ have_pclmulqdq and ++ not (system == 'darwin' and cpu_family == 'x86') ++ ) ++ have_vpclmulqdq = want_vpclmulqdq.allowed() and cc.compiles( ++ '''#include ++ #include ++ __m512i f(__m512i a) { ++ __m512i b = _mm512_setzero_si512(); ++ return _mm512_clmulepi64_epi128(a, b, 0x10); ++ } ++ int main(void) { return 0; }''', ++ args: vpclmulflags, ++ ) ++ if have_vpclmulqdq ++ compile_args += '-DX86_VPCLMULQDQ_CRC' ++ arch_libs += static_library( ++ 'vpclmulqdq', ++ archdir / 'crc32_vpclmulqdq.c', ++ c_args: compile_args + pclmulflags + vpclmulflags + avx512flags, ++ link_args: link_args, ++ ) ++ endif ++ want_vpclmulqdq.require(have_vpclmulqdq) ++ summary('VPCLMULQDQ', have_vpclmulqdq, section: arch_section, bool_yn: true) ++ ++else ++ summary('Architecture', 'generic', section: arch_section) ++ archdir = 'arch/generic' ++endif ++ ++zlib_ng = library( ++ 'z' + suffix, ++ src, ++ c_args: compile_args, ++ link_args: link_args, ++ vs_module_defs: def, ++ include_directories: [archdir, 'arch/generic'], ++ link_with: arch_libs, ++ install: true, ++ version: lib_version, ++) ++ ++zlib_ng_dep = declare_dependency( ++ compile_args: pkg_config_cflags, ++ link_with: zlib_ng, ++ include_directories: include_directories('.'), ++) ++meson.override_dependency('zlib-ng', zlib_ng_dep) ++ ++import('pkgconfig').generate( ++ zlib_ng, ++ name: 'zlib' + suffix, ++ version: pkg_version, ++ description: 'zlib-ng compression library', ++ extra_cflags: pkg_config_cflags, ++) +--- /dev/null ++++ b/meson_options.txt +@@ -0,0 +1,158 @@ ++option( ++ 'gzfileop', ++ description: 'Compile with support for gzFile related functions', ++ type: 'boolean', ++ value: true ++) ++option( ++ 'tests', ++ description: 'Compile tests', ++ type: 'feature', ++ value: 'auto' ++) ++option( ++ 'zlib-compat', ++ description: 'Compile with zlib compatible API', ++ type: 'boolean', ++ value: false ++) ++ ++# advanced options ++# generic ++option( ++ 'unaligned', ++ description: 'Support unaligned reads on platforms that support it', ++ type: 'boolean', ++ value: true ++) ++option( ++ 'inflate-strict', ++ description: 'Build with strict inflate distance checking', ++ type: 'boolean', ++ value: false ++) ++option( ++ 'inflate-allow-invalid-dist', ++ description: 'Build with zero fill for inflate invalid distances', ++ type: 'boolean', ++ value: false ++) ++# ARM ++option( ++ 'armv6', ++ description: 'Build with ARMv6 SIMD', ++ type: 'feature', ++ value: 'auto' ++) ++option( ++ 'acle', ++ description: 'Build with ACLE', ++ type: 'feature', ++ value: 'auto' ++) ++option( ++ 'neon', ++ description: 'Build with NEON intrinsics', ++ type: 'feature', ++ value: 'auto' ++) ++# Power ++option( ++ 'altivec', ++ description: 'Build with AltiVec (VMX) intrinsics', ++ type: 'feature', ++ value: 'auto' ++) ++option( ++ 'power8', ++ description: 'Build with POWER8 intrinsics', ++ type: 'feature', ++ value: 'auto' ++) ++option( ++ 'power9', ++ description: 'Build with POWER9 intrinsics', ++ type: 'feature', ++ value: 'auto' ++) ++# RISC-V ++option( ++ 'rvv', ++ description: 'Build with RVV intrinsics', ++ type: 'feature', ++ value: 'auto' ++) ++# S390 ++option( ++ 'crc32-vx', ++ description: 'Build with vectorized CRC32 on IBM Z', ++ type: 'feature', ++ value: 'auto' ++) ++option( ++ 'dfltcc-deflate', ++ description: 'Build with DFLTCC intrinsics for compression on IBM Z (off by default)', ++ type: 'feature', ++ value: 'auto' ++) ++option( ++ 'dfltcc-inflate', ++ description: 'Build with DFLTCC intrinsics for decompression on IBM Z (off by default)', ++ type: 'feature', ++ value: 'auto' ++) ++# x86 ++option( ++ 'sse2', ++ description: 'Build with SSE2', ++ type: 'feature', ++ value: 'auto' ++) ++option( ++ 'force-sse2', ++ description: 'Assume CPU is SSE2 capable', ++ type: 'boolean', ++ value: false ++) ++option( ++ 'ssse3', ++ description: 'Build with SSSE3', ++ type: 'feature', ++ value: 'auto' ++) ++option( ++ 'sse42', ++ description: 'Build with SSE4.2', ++ type: 'feature', ++ value: 'auto' ++) ++option( ++ 'pclmulqdq', ++ description: 'Build with PCLMULQDQ', ++ type: 'feature', ++ value: 'auto' ++) ++option( ++ 'avx2', ++ description: 'Build with AVX2', ++ type: 'feature', ++ value: 'auto' ++) ++option( ++ 'avx512', ++ description: 'Build with AVX512', ++ type: 'feature', ++ value: 'auto' ++) ++option( ++ 'avx512vnni', ++ description: 'Build with AVX512 VNNI extensions', ++ type: 'feature', ++ value: 'auto' ++) ++option( ++ 'vpclmulqdq', ++ description: 'Build with VPCLMULQDQ', ++ type: 'feature', ++ value: 'auto' ++) +--- /dev/null ++++ b/process-zconf.py +@@ -0,0 +1,26 @@ ++#!/usr/bin/python3 ++ ++import argparse ++import re ++import sys ++ ++parser = argparse.ArgumentParser() ++parser.add_argument('--have-unistd', action='store_true') ++parser.add_argument('--ptrdiff-type') ++parser.add_argument( ++ 'file', type=argparse.FileType('r'), nargs='?', default=sys.stdin ++) ++args = parser.parse_args() ++ ++unistd = f'#if {int(bool(args.have_unistd))} /* set by Meson */' ++unistd_regex = re.compile('^#ifdef HAVE_UNISTD_H.*') ++ptrdiff_regex = re.compile('^#ifdef NEED_PTRDIFF_T.*') ++ ++for line in args.file: ++ line = unistd_regex.sub(unistd, line) ++ if args.ptrdiff_type: ++ line = ptrdiff_regex.sub('#if 1 /* set by Meson */', line) ++ line = line.replace( ++ 'typedef PTRDIFF_TYPE', f'typedef {args.ptrdiff_type}' ++ ) ++ print(line, end='') diff --git a/subprojects/zlib-ng.wrap b/subprojects/zlib-ng.wrap new file mode 100644 index 00000000..0106310d --- /dev/null +++ b/subprojects/zlib-ng.wrap @@ -0,0 +1,11 @@ +[wrap-file] +directory = zlib-ng-2.2.2 +source_url = https://github.com/zlib-ng/zlib-ng/archive/refs/tags/2.2.2.tar.gz +source_filename = zlib-ng-2.2.2.tar.gz +source_hash = fcb41dd59a3f17002aeb1bb21f04696c9b721404890bb945c5ab39d2cb69654c + +# https://github.com/mesonbuild/wrapdb/pull/1710 +diff_files = zlib-ng-meson.patch + +[provide] +dependency_names = zlib-ng diff --git a/subprojects/zlib.wrap b/subprojects/zlib.wrap deleted file mode 100644 index aa14de17..00000000 --- a/subprojects/zlib.wrap +++ /dev/null @@ -1,13 +0,0 @@ -[wrap-file] -directory = zlib-1.3.1 -source_url = http://zlib.net/fossils/zlib-1.3.1.tar.gz -source_fallback_url = https://github.com/mesonbuild/wrapdb/releases/download/zlib_1.3.1-1/zlib-1.3.1.tar.gz -source_filename = zlib-1.3.1.tar.gz -source_hash = 9a93b2b7dfdac77ceba5a558a580e74667dd6fede4585b91eefb60f03b72df23 -patch_filename = zlib_1.3.1-1_patch.zip -patch_url = https://wrapdb.mesonbuild.com/v2/zlib_1.3.1-1/get_patch -patch_hash = e79b98eb24a75392009cec6f99ca5cdca9881ff20bfa174e8b8926d5c7a47095 -wrapdb_version = 1.3.1-1 - -[provide] -zlib = zlib_dep