Translations: Change the home page URLs in man page translations
[xz/debian.git] / CMakeLists.txt
blob59ecf010be99e3910f17b5e70363517825e79f68
1 # SPDX-License-Identifier: 0BSD
3 #############################################################################
5 # CMake support for building XZ Utils
7 # The complete CMake-based build hasn't been tested much yet and
8 # thus it's still slightly experimental. Testing this especially
9 # outside GNU/Linux and Windows would be great now.
11 # A few things are still missing compared to the Autotools-based build:
13 #   - 32-bit x86 assembly code for CRC32 and CRC64 isn't used by default.
14 #     Use the option -DENABLE_X86_ASM=ON on the CMake command line to
15 #     enable the assembly files. They are compatible with Linux, *BSDs,
16 #     Cygwin, MinGW-w64, and Darwin. They are NOT compatible with MSVC.
18 #     NOTE: The C code includes a generic version compatible with all
19 #     processors and CLMUL version that requires a new enough processor
20 #     with the PCLMULQDQ instruction. If the 32-bit x86 assembly files
21 #     are used, the CLMUL version in the C code is NOT built. On modern
22 #     processors with CLMUL support, the C code should be faster than
23 #     the assembly code while on old processors the assembly code wins.
25 #   - External SHA-256 code isn't supported but it's disabled by
26 #     default in the Autotools build too (--enable-external-sha256).
28 #   - Extra compiler warning flags aren't added by default.
30 # About CMAKE_BUILD_TYPE:
32 #   - CMake's standard choices are fine to use for production builds,
33 #     including "Release" and "RelWithDebInfo".
35 #     NOTE: While "Release" uses -O3 by default with some compilers,
36 #     this file overrides -O3 to -O2 for "Release" builds if
37 #     CMAKE_C_FLAGS_RELEASE is not defined by the user. At least
38 #     with GCC and Clang/LLVM, -O3 doesn't seem useful for this
39 #     package as it can result in bigger binaries without any
40 #     improvement in speed compared to -O2.
42 #   - Empty value (the default) is handled slightly specially: It
43 #     adds -DNDEBUG to disable debugging code (assert() and a few
44 #     other things). No optimization flags are added so an empty
45 #     CMAKE_BUILD_TYPE is an easy way to build with whatever
46 #     optimization flags one wants, and so this method is also
47 #     suitable for production builds.
49 #     If debugging is wanted when using empty CMAKE_BUILD_TYPE,
50 #     include -UNDEBUG in the CFLAGS environment variable or
51 #     in the CMAKE_C_FLAGS CMake variable to override -DNDEBUG.
52 #     With empty CMAKE_BUILD_TYPE, the -UNDEBUG option will go
53 #     after the -DNDEBUG option on the compiler command line and
54 #     thus NDEBUG will be undefined.
56 #   - Non-standard build types like "None" aren't treated specially
57 #     and thus won't have -DNEBUG. Such non-standard build types
58 #     SHOULD BE AVOIDED FOR PRODUCTION BUILDS. Or at least one
59 #     should remember to add -DNDEBUG.
61 # If building from xz.git instead of a release tarball, consider
62 # the following *before* running cmake:
64 #   - To get translated messages, install GNU gettext tools (the
65 #     command msgfmt is needed). Alternatively disable translations
66 #     by setting ENABLE_NLS=OFF.
68 #   - To get translated man pages, run po4a/update-po which requires
69 #     the po4a tool. The build works without this step too.
71 # This file provides the following installation components (if you only
72 # need liblzma, install only its components!):
73 #   - liblzma_Runtime (shared library only)
74 #   - liblzma_Development
75 #   - liblzma_Documentation (examples and Doxygen-generated API docs as HTML)
76 #   - xz_Runtime (xz, the symlinks, and possibly translation files)
77 #   - xz_Documentation (xz man pages and the symlinks)
78 #   - xzdec_Runtime
79 #   - xzdec_Documentation (xzdec *and* lzmadec man pages)
80 #   - lzmadec_Runtime
81 #   - lzmainfo_Runtime
82 #   - lzmainfo_Documentation (lzmainfo man pages)
83 #   - scripts_Runtime (xzdiff, xzgrep, xzless, xzmore)
84 #   - scripts_Documentation (their man pages)
85 #   - Documentation (generic docs like README and licenses)
87 # To find the target liblzma::liblzma from other packages, use the CONFIG
88 # option with find_package() to avoid a conflict with the FindLibLZMA module
89 # with case-insensitive file systems. For example, to require liblzma 5.2.5
90 # or a newer compatible version:
92 #     find_package(liblzma 5.2.5 REQUIRED CONFIG)
93 #     target_link_libraries(my_application liblzma::liblzma)
95 #############################################################################
97 # Author: Lasse Collin
99 #############################################################################
101 # NOTE: Translation support is disabled with CMake older than 3.20.
102 cmake_minimum_required(VERSION 3.14...3.29 FATAL_ERROR)
104 include(CMakePushCheckState)
105 include(CheckIncludeFile)
106 include(CheckSymbolExists)
107 include(CheckStructHasMember)
108 include(CheckCSourceCompiles)
109 include(cmake/tuklib_large_file_support.cmake)
110 include(cmake/tuklib_integer.cmake)
111 include(cmake/tuklib_cpucores.cmake)
112 include(cmake/tuklib_physmem.cmake)
113 include(cmake/tuklib_progname.cmake)
114 include(cmake/tuklib_mbstr.cmake)
116 set(PACKAGE_NAME "XZ Utils")
117 set(PACKAGE_BUGREPORT "xz@tukaani.org")
118 set(PACKAGE_URL "https://tukaani.org/xz/")
120 # Get the package version from version.h into PACKAGE_VERSION variable.
121 file(READ src/liblzma/api/lzma/version.h PACKAGE_VERSION)
122 string(REGEX REPLACE
123 "^.*\n\
124 #define LZMA_VERSION_MAJOR ([0-9]+)\n\
126 #define LZMA_VERSION_MINOR ([0-9]+)\n\
128 #define LZMA_VERSION_PATCH ([0-9]+)\n\
129 .*$"
130        "\\1.\\2.\\3" PACKAGE_VERSION "${PACKAGE_VERSION}")
132 # With several compilers, CMAKE_BUILD_TYPE=Release uses -O3 optimization
133 # which results in bigger code without a clear difference in speed. If
134 # no user-defined CMAKE_C_FLAGS_RELEASE is present, override -O3 to -O2
135 # to make it possible to recommend CMAKE_BUILD_TYPE=Release.
136 if(NOT DEFINED CMAKE_C_FLAGS_RELEASE)
137     set(OVERRIDE_O3_IN_C_FLAGS_RELEASE ON)
138 endif()
140 # Among other things, this gives us variables xz_VERSION and xz_VERSION_MAJOR.
141 project(xz VERSION "${PACKAGE_VERSION}" LANGUAGES C)
143 if(OVERRIDE_O3_IN_C_FLAGS_RELEASE)
144     # Looking at CMake's source, there aren't any _FLAGS_RELEASE_INIT
145     # entries where "-O3" would appear as part of some other option,
146     # thus a simple search and replace should be fine.
147     string(REPLACE -O3 -O2 CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE}")
149     # Update the cache value while keeping its docstring unchanged.
150     set_property(CACHE CMAKE_C_FLAGS_RELEASE
151                  PROPERTY VALUE "${CMAKE_C_FLAGS_RELEASE}")
152 endif()
154 # We need a compiler that supports enough C99 or newer (variable-length arrays
155 # aren't needed, those are optional in C17). Setting CMAKE_C_STANDARD here
156 # makes it the default for all targets. It doesn't affect the INTERFACE so
157 # liblzma::liblzma won't end up with INTERFACE_COMPILE_FEATURES "c_std_99"
158 # (the API headers are C89 and C++ compatible).
159 set(CMAKE_C_STANDARD 99)
160 set(CMAKE_C_STANDARD_REQUIRED ON)
162 # Support 32-bit x86 assembly files.
163 if(NOT MSVC)
164     option(ENABLE_X86_ASM "Enable 32-bit x86 assembly code" OFF)
165     if(ENABLE_X86_ASM)
166         enable_language(ASM)
167     endif()
168 endif()
170 # On Apple OSes, don't build executables as bundles:
171 set(CMAKE_MACOSX_BUNDLE OFF)
173 # Set CMAKE_INSTALL_LIBDIR and friends. This needs to be done before
174 # the LOCALEDIR_DEFINITION workaround below.
175 include(GNUInstallDirs)
177 # windres from GNU binutils can be tricky with command line arguments
178 # that contain spaces or other funny characters. Unfortunately we need
179 # a space in PACKAGE_NAME. Using \x20 to encode the US-ASCII space seems
180 # to work in both cmd.exe and /bin/sh.
182 # However, even \x20 isn't enough in all situations, resulting in
183 # "syntax error" from windres. Using --use-temp-file prevents windres
184 # from using popen() and this seems to fix the problem.
186 # llvm-windres from Clang/LLVM 16.0.6 and older: The \x20 results
187 # in "XZx20Utils" in the compiled binary. The option --use-temp-file
188 # makes no difference.
190 # llvm-windres 17.0.0 and later: It emulates GNU windres more accurately, so
191 # the workarounds used with GNU windres must be used with llvm-windres too.
193 # CMake 3.27 doesn't have CMAKE_RC_COMPILER_ID so we rely on
194 # CMAKE_C_COMPILER_ID.
195 if((MINGW OR CYGWIN OR MSYS) AND (
196         NOT CMAKE_C_COMPILER_ID STREQUAL "Clang" OR
197         CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL "17"))
198     # Use workarounds with GNU windres and llvm-windres >= 17.0.0. The \x20
199     # in PACKAGE_NAME_DEFINITION works with gcc and clang too so we don't need
200     # to worry how to pass different flags to windres and the C compiler.
201     # Keep the original PACKAGE_NAME intact for generation of liblzma.pc.
202     string(APPEND CMAKE_RC_FLAGS " --use-temp-file")
203     string(REPLACE " " "\\x20" PACKAGE_NAME_DEFINITION "${PACKAGE_NAME}")
205     # Use octal because "Program Files" would become \x20F.
206     string(REPLACE " " "\\040" LOCALEDIR_DEFINITION
207            "${CMAKE_INSTALL_FULL_LOCALEDIR}")
208 else()
209     # Elsewhere a space is safe. This also keeps things compatible with
210     # EBCDIC in case CMake-based build is ever done on such a system.
211     set(PACKAGE_NAME_DEFINITION "${PACKAGE_NAME}")
212     set(LOCALEDIR_DEFINITION "${CMAKE_INSTALL_FULL_LOCALEDIR}")
213 endif()
215 # Definitions common to all targets:
216 add_compile_definitions(
217     # Package info:
218     PACKAGE_NAME="${PACKAGE_NAME_DEFINITION}"
219     PACKAGE_BUGREPORT="${PACKAGE_BUGREPORT}"
220     PACKAGE_URL="${PACKAGE_URL}"
222     # Standard headers and types are available:
223     HAVE_STDBOOL_H
224     HAVE__BOOL
225     HAVE_STDINT_H
226     HAVE_INTTYPES_H
228     # Always enable CRC32 since liblzma should never build without it.
229     HAVE_CHECK_CRC32
231     # Disable assert() checks when no build type has been specified. Non-empty
232     # build types like "Release" and "Debug" handle this by default.
233     $<$<CONFIG:>:NDEBUG>
237 ######################
238 # System definitions #
239 ######################
241 # _GNU_SOURCE and such definitions. This specific macro is special since
242 # it also adds the definitions to CMAKE_REQUIRED_DEFINITIONS.
243 tuklib_use_system_extensions(ALL)
245 # Check for large file support. It's required on some 32-bit platforms and
246 # even on 64-bit MinGW-w64 to get 64-bit off_t. This can be forced off on
247 # the CMake command line if needed: -DLARGE_FILE_SUPPORT=OFF
248 tuklib_large_file_support(ALL)
250 # This is needed by liblzma and xz.
251 tuklib_integer(ALL)
253 # This is used for liblzma.pc generation to add -lrt if needed.
254 set(LIBS)
256 # Check for clock_gettime(). Do this before checking for threading so
257 # that we know there if CLOCK_MONOTONIC is available.
258 check_symbol_exists(clock_gettime time.h HAVE_CLOCK_GETTIME)
260 if(NOT HAVE_CLOCK_GETTIME)
261     # With glibc <= 2.17 or Solaris 10 this needs librt.
262     # Add librt for the next check for HAVE_CLOCK_GETTIME. If it is
263     # found after including the library, we know that librt is required.
264     list(INSERT CMAKE_REQUIRED_LIBRARIES 0 rt)
265     check_symbol_exists(clock_gettime time.h HAVE_CLOCK_GETTIME_LIBRT)
267     # If it was found now, add librt to all targets and keep it in
268     # CMAKE_REQUIRED_LIBRARIES for further tests too.
269     if(HAVE_CLOCK_GETTIME_LIBRT)
270         link_libraries(rt)
271         set(LIBS "-lrt") # For liblzma.pc
272     else()
273         list(REMOVE_AT CMAKE_REQUIRED_LIBRARIES 0)
274     endif()
275 endif()
277 if(HAVE_CLOCK_GETTIME OR HAVE_CLOCK_GETTIME_LIBRT)
278     add_compile_definitions(HAVE_CLOCK_GETTIME)
280     # Check if CLOCK_MONOTONIC is available for clock_gettime().
281     check_symbol_exists(CLOCK_MONOTONIC time.h HAVE_CLOCK_MONOTONIC)
282     tuklib_add_definition_if(ALL HAVE_CLOCK_MONOTONIC)
283 endif()
285 # Translation support requires CMake 3.20 because it added the Intl::Intl
286 # target so we don't need to play with the individual variables.
288 # The definition ENABLE_NLS is added only to those targets that use it, thus
289 # it's not done here. (xz has translations, xzdec doesn't.)
290 if(CMAKE_VERSION VERSION_GREATER_EQUAL "3.20")
291     find_package(Intl)
292     find_package(Gettext)
294     if(Intl_FOUND)
295         option(ENABLE_NLS "Native Language Support (translated messages)" ON)
297         # If translation support is enabled but neither gettext tools or
298         # pre-generated .gmo files exist, translation support cannot be
299         # enabled.
300         #
301         # The detection of pre-generated .gmo files is done by only
302         # checking for the existence of a single .gmo file; Ukrainian
303         # is one of many translations that gets regular updates.
304         if(ENABLE_NLS AND NOT GETTEXT_FOUND AND
305                 NOT EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/po/uk.gmo")
306             # This only sets the variable, not the cache variable!
307             set(ENABLE_NLS OFF)
309             # This message is shown only when new enough CMake is used and
310             # library support for translations was found. The assumptions is
311             # that in this situation the user might have interest in the
312             # translations. This also keeps this code simpler.
313             message(WARNING "Native language support (NLS) has been disabled. "
314                             "NLS support requires either gettext tools or "
315                             "pre-generated .gmo files. The latter are only "
316                             "available in distribution tarballs. "
317                             "To avoid this warning, NLS can be explicitly "
318                             "disabled by passing -DENABLE_NLS=OFF to cmake.")
319         endif()
321         # Warn if NLS is enabled but translated man pages are missing.
322         if(UNIX AND ENABLE_NLS AND
323                 NOT EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/po4a/man")
324             message(WARNING "Native language support (NLS) has been enabled "
325                             "but pre-generated translated man pages "
326                             "were not found and thus they won't be installed. "
327                             "Run 'po4a/update-po' to generate them.")
328         endif()
330         # The *installed* name of the translation files is "xz.mo".
331         set(TRANSLATION_DOMAIN "xz")
332     endif()
333 endif()
335 # Options for new enough GCC or Clang on any arch or operating system:
336 if(CMAKE_C_COMPILER_ID MATCHES GNU|Clang)
337     # configure.ac has a long list but it won't be copied here:
338     add_compile_options(-Wall -Wextra)
339 endif()
342 #############################################################################
343 # liblzma
344 #############################################################################
346 option(BUILD_SHARED_LIBS "Build liblzma as a shared library instead of static")
348 if(NOT WIN32)
349     # Symbol versioning only affects ELF shared libraries. The option is
350     # ignored for static libraries.
351     #
352     # Determine the default value so that it's always set with
353     # shared libraries in mind which helps if the build dir is reconfigured
354     # from static to shared libs without resetting the cache variables.
355     set(SYMBOL_VERSIONING_DEFAULT OFF)
357     if(CMAKE_SYSTEM_NAME STREQUAL "Linux" AND
358             (CMAKE_SYSTEM_PROCESSOR MATCHES "[Mm]icro[Bb]laze" OR
359              CMAKE_C_COMPILER_ID STREQUAL "NVHPC"))
360         # As a special case, GNU/Linux on MicroBlaze gets the generic
361         # symbol versioning because GCC 12 doesn't support the __symver__
362         # attribute on MicroBlaze. On Linux, CMAKE_SYSTEM_PROCESSOR comes
363         # from "uname -m" for native builds (should be "microblaze") or from
364         # the CMake toolchain file (not perfectly standardized but it very
365         # likely has "microblaze" in lower case or mixed case somewhere in
366         # the string).
367         #
368         # NVIDIA HPC Compiler doesn't support symbol versioning but
369         # it uses the linked from the system so the linker script
370         # can still be used to get the generic symbol versioning.
371         set(SYMBOL_VERSIONING_DEFAULT "generic")
373     elseif(CMAKE_SYSTEM_NAME STREQUAL "Linux")
374         # GNU/Linux-specific symbol versioning for shared liblzma.
375         # This includes a few extra compatibility symbols for RHEL/CentOS 7
376         # which are pointless on non-glibc non-Linux systems.
377         #
378         # Avoid symvers on Linux with non-glibc like musl and uClibc.
379         # In Autoconf it's enough to check that $host_os equals linux-gnu
380         # instead of, for example, linux-musl. CMake doesn't provide such
381         # a method.
382         #
383         # This check is here for now since it's not strictly required
384         # by anything else.
385         check_c_source_compiles(
386                 "#include <features.h>
387                 #if defined(__GLIBC__) && !defined(__UCLIBC__)
388                 int main(void) { return 0; }
389                 #else
390                 compile error
391                 #endif
392             "
393             IS_LINUX_WITH_GLIBC)
395         if(IS_LINUX_WITH_GLIBC)
396             set(SYMBOL_VERSIONING_DEFAULT "linux")
397         endif()
399     elseif(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD")
400         set(SYMBOL_VERSIONING_DEFAULT "generic")
401     endif()
403     set(SYMBOL_VERSIONING "${SYMBOL_VERSIONING_DEFAULT}" CACHE STRING
404         "Enable ELF shared library symbol versioning (OFF, generic, linux)")
406     # Show a dropdown menu in CMake GUI:
407     set_property(CACHE SYMBOL_VERSIONING PROPERTY STRINGS "OFF;generic;linux")
408 endif()
410 set(LIBLZMA_API_HEADERS
411     src/liblzma/api/lzma.h
412     src/liblzma/api/lzma/base.h
413     src/liblzma/api/lzma/bcj.h
414     src/liblzma/api/lzma/block.h
415     src/liblzma/api/lzma/check.h
416     src/liblzma/api/lzma/container.h
417     src/liblzma/api/lzma/delta.h
418     src/liblzma/api/lzma/filter.h
419     src/liblzma/api/lzma/hardware.h
420     src/liblzma/api/lzma/index.h
421     src/liblzma/api/lzma/index_hash.h
422     src/liblzma/api/lzma/lzma12.h
423     src/liblzma/api/lzma/stream_flags.h
424     src/liblzma/api/lzma/version.h
425     src/liblzma/api/lzma/vli.h
428 add_library(liblzma
429     src/common/mythread.h
430     src/common/sysdefs.h
431     src/common/tuklib_common.h
432     src/common/tuklib_config.h
433     src/common/tuklib_integer.h
434     src/common/tuklib_physmem.c
435     src/common/tuklib_physmem.h
436     ${LIBLZMA_API_HEADERS}
437     src/liblzma/check/check.c
438     src/liblzma/check/check.h
439     src/liblzma/check/crc_common.h
440     src/liblzma/check/crc_x86_clmul.h
441     src/liblzma/check/crc32_arm64.h
442     src/liblzma/common/block_util.c
443     src/liblzma/common/common.c
444     src/liblzma/common/common.h
445     src/liblzma/common/easy_preset.c
446     src/liblzma/common/easy_preset.h
447     src/liblzma/common/filter_common.c
448     src/liblzma/common/filter_common.h
449     src/liblzma/common/hardware_physmem.c
450     src/liblzma/common/index.c
451     src/liblzma/common/index.h
452     src/liblzma/common/memcmplen.h
453     src/liblzma/common/stream_flags_common.c
454     src/liblzma/common/stream_flags_common.h
455     src/liblzma/common/string_conversion.c
456     src/liblzma/common/vli_size.c
459 target_include_directories(liblzma PRIVATE
460     src/liblzma/api
461     src/liblzma/common
462     src/liblzma/check
463     src/liblzma/lz
464     src/liblzma/rangecoder
465     src/liblzma/lzma
466     src/liblzma/delta
467     src/liblzma/simple
468     src/common
472 ######################
473 # Size optimizations #
474 ######################
476 option(ENABLE_SMALL "Reduce code size at expense of speed. \
477 This may be useful together with CMAKE_BUILD_TYPE=MinSizeRel.")
479 if(ENABLE_SMALL)
480     add_compile_definitions(HAVE_SMALL)
481 endif()
484 ##########
485 # Checks #
486 ##########
488 set(ADDITIONAL_SUPPORTED_CHECKS crc64 sha256)
490 set(ADDITIONAL_CHECK_TYPES "${ADDITIONAL_SUPPORTED_CHECKS}" CACHE STRING
491     "Additional check types to support (crc32 is always built)")
493 foreach(CHECK IN LISTS ADDITIONAL_CHECK_TYPES)
494     if(NOT CHECK IN_LIST ADDITIONAL_SUPPORTED_CHECKS)
495         message(FATAL_ERROR "'${CHECK}' is not a supported check type")
496     endif()
497 endforeach()
499 if(ENABLE_SMALL)
500     target_sources(liblzma PRIVATE src/liblzma/check/crc32_small.c)
501 else()
502     target_sources(liblzma PRIVATE
503         src/liblzma/check/crc32_table.c
504         src/liblzma/check/crc32_table_be.h
505         src/liblzma/check/crc32_table_le.h
506     )
508     if(ENABLE_X86_ASM)
509         target_sources(liblzma PRIVATE src/liblzma/check/crc32_x86.S)
510     else()
511         target_sources(liblzma PRIVATE src/liblzma/check/crc32_fast.c)
512     endif()
513 endif()
515 if("crc64" IN_LIST ADDITIONAL_CHECK_TYPES)
516     add_compile_definitions("HAVE_CHECK_CRC64")
518     if(ENABLE_SMALL)
519         target_sources(liblzma PRIVATE src/liblzma/check/crc64_small.c)
520     else()
521         target_sources(liblzma PRIVATE
522             src/liblzma/check/crc64_table.c
523             src/liblzma/check/crc64_table_be.h
524             src/liblzma/check/crc64_table_le.h
525         )
527         if(ENABLE_X86_ASM)
528             target_sources(liblzma PRIVATE src/liblzma/check/crc64_x86.S)
529         else()
530             target_sources(liblzma PRIVATE src/liblzma/check/crc64_fast.c)
531         endif()
532     endif()
533 endif()
535 if("sha256" IN_LIST ADDITIONAL_CHECK_TYPES)
536     add_compile_definitions("HAVE_CHECK_SHA256")
537     target_sources(liblzma PRIVATE src/liblzma/check/sha256.c)
538 endif()
541 #################
542 # Match finders #
543 #################
545 set(SUPPORTED_MATCH_FINDERS hc3 hc4 bt2 bt3 bt4)
547 set(MATCH_FINDERS "${SUPPORTED_MATCH_FINDERS}" CACHE STRING
548     "Match finders to support (at least one is required for LZMA1 or LZMA2)")
550 foreach(MF IN LISTS MATCH_FINDERS)
551     if(MF IN_LIST SUPPORTED_MATCH_FINDERS)
552         string(TOUPPER "${MF}" MF_UPPER)
553         add_compile_definitions("HAVE_MF_${MF_UPPER}")
554     else()
555         message(FATAL_ERROR "'${MF}' is not a supported match finder")
556     endif()
557 endforeach()
560 #############
561 # Threading #
562 #############
564 # Supported threading methods:
565 # ON    - autodetect the best threading method. The autodetection will
566 #         prefer Windows threading (win95 or vista) over posix if both are
567 #         available. vista threads will be used over win95 unless it is a
568 #         32-bit build.
569 # OFF   - Disable threading.
570 # posix - Use posix threading (pthreads), or throw an error if not available.
571 # win95 - Use Windows win95 threading, or throw an error if not available.
572 # vista - Use Windows vista threading, or throw an error if not available.
573 set(SUPPORTED_THREADING_METHODS ON OFF posix win95 vista)
575 set(ENABLE_THREADS ON CACHE STRING
576     "Threading method: Set to 'ON' to autodetect, 'OFF' to disable threading.")
578 # Create dropdown in CMake GUI since only 1 threading method is possible
579 # to select in a build.
580 set_property(CACHE ENABLE_THREADS
581              PROPERTY STRINGS "${SUPPORTED_THREADING_METHODS}")
583 # This is a flag variable set when win95 threads are used. We must ensure
584 # the combination of enable_small and win95 threads is not used without a
585 # compiler supporting attribute __constructor__.
586 set(USE_WIN95_THREADS OFF)
588 # This is a flag variable set when posix threads (pthreads) are used.
589 # It's needed when creating liblzma-config.cmake where dependency on
590 # Threads::Threads is only needed with pthreads.
591 set(USE_POSIX_THREADS OFF)
593 if(NOT ENABLE_THREADS IN_LIST SUPPORTED_THREADING_METHODS)
594     message(FATAL_ERROR "'${ENABLE_THREADS}' is not a supported "
595                         "threading method")
596 endif()
598 if(ENABLE_THREADS)
599     # Also set THREADS_PREFER_PTHREAD_FLAG since the flag has no effect
600     # for Windows threading.
601     set(THREADS_PREFER_PTHREAD_FLAG TRUE)
602     find_package(Threads REQUIRED)
604     # If both Windows and posix threading are available, prefer Windows.
605     # Note that on Cygwin CMAKE_USE_WIN32_THREADS_INIT is false.
606     if(CMAKE_USE_WIN32_THREADS_INIT AND NOT ENABLE_THREADS STREQUAL "posix")
607         if(ENABLE_THREADS STREQUAL "win95"
608                 OR (ENABLE_THREADS STREQUAL "ON"
609                     AND CMAKE_SIZEOF_VOID_P EQUAL 4))
610             # Use Windows 95 (and thus XP) compatible threads.
611             # This avoids use of features that were added in
612             # Windows Vista. This is used for 32-bit x86 builds for
613             # compatibility reasons since it makes no measurable difference
614             # in performance compared to Vista threads.
615             set(USE_WIN95_THREADS ON)
616             add_compile_definitions(MYTHREAD_WIN95)
617         else()
618             add_compile_definitions(MYTHREAD_VISTA)
619         endif()
620     elseif(CMAKE_USE_PTHREADS_INIT)
621         if(ENABLE_THREADS STREQUAL "posix" OR ENABLE_THREADS STREQUAL "ON")
622             # The threading library only needs to be explicitly linked
623             # for posix threads, so this is needed for creating
624             # liblzma-config.cmake later.
625             set(USE_POSIX_THREADS ON)
627             target_link_libraries(liblzma Threads::Threads)
628             add_compile_definitions(MYTHREAD_POSIX)
630             # Check if pthread_condattr_setclock() exists to
631             # use CLOCK_MONOTONIC.
632             if(HAVE_CLOCK_MONOTONIC)
633                 list(INSERT CMAKE_REQUIRED_LIBRARIES 0
634                      "${CMAKE_THREAD_LIBS_INIT}")
635                 check_symbol_exists(pthread_condattr_setclock pthread.h
636                                     HAVE_PTHREAD_CONDATTR_SETCLOCK)
637                 tuklib_add_definition_if(ALL HAVE_PTHREAD_CONDATTR_SETCLOCK)
638             endif()
639         else()
640             message(SEND_ERROR
641                     "Windows threading method was requested but a compatible "
642                     "library could not be found")
643         endif()
644     else()
645         message(SEND_ERROR "No supported threading library found")
646     endif()
648     target_sources(liblzma PRIVATE
649         src/common/tuklib_cpucores.c
650         src/common/tuklib_cpucores.h
651         src/liblzma/common/hardware_cputhreads.c
652         src/liblzma/common/outqueue.c
653         src/liblzma/common/outqueue.h
654     )
655 endif()
658 ############
659 # Encoders #
660 ############
662 set(SIMPLE_FILTERS
663     x86
664     arm
665     armthumb
666     arm64
667     powerpc
668     ia64
669     sparc
670     riscv
673 # The SUPPORTED_FILTERS are shared between Encoders and Decoders
674 # since only lzip does not appear in both lists. lzip is a special
675 # case anyway, so it is handled separately in the Decoders section.
676 set(SUPPORTED_FILTERS
677     lzma1
678     lzma2
679     delta
680     "${SIMPLE_FILTERS}"
683 set(ENCODERS "${SUPPORTED_FILTERS}" CACHE STRING "Encoders to support")
685 # If LZMA2 is enabled, then LZMA1 must also be enabled.
686 if(NOT "lzma1" IN_LIST ENCODERS AND "lzma2" IN_LIST ENCODERS)
687     message(FATAL_ERROR "LZMA2 encoder requires that LZMA1 is also enabled")
688 endif()
690 # If LZMA1 is enabled, then at least one match finder must be enabled.
691 if(MATCH_FINDERS STREQUAL "" AND "lzma1" IN_LIST ENCODERS)
692     message(FATAL_ERROR "At least 1 match finder is required for an "
693                         "LZ-based encoder")
694 endif()
696 set(HAVE_DELTA_CODER OFF)
697 set(SIMPLE_ENCODERS OFF)
698 set(HAVE_ENCODERS OFF)
700 foreach(ENCODER IN LISTS ENCODERS)
701     if(ENCODER IN_LIST SUPPORTED_FILTERS)
702         set(HAVE_ENCODERS ON)
704         if(NOT SIMPLE_ENCODERS AND ENCODER IN_LIST SIMPLE_FILTERS)
705             set(SIMPLE_ENCODERS ON)
706         endif()
708         string(TOUPPER "${ENCODER}" ENCODER_UPPER)
709         add_compile_definitions("HAVE_ENCODER_${ENCODER_UPPER}")
710     else()
711         message(FATAL_ERROR "'${ENCODER}' is not a supported encoder")
712     endif()
713 endforeach()
715 if(HAVE_ENCODERS)
716     add_compile_definitions(HAVE_ENCODERS)
718     target_sources(liblzma PRIVATE
719         src/liblzma/common/alone_encoder.c
720         src/liblzma/common/block_buffer_encoder.c
721         src/liblzma/common/block_buffer_encoder.h
722         src/liblzma/common/block_encoder.c
723         src/liblzma/common/block_encoder.h
724         src/liblzma/common/block_header_encoder.c
725         src/liblzma/common/easy_buffer_encoder.c
726         src/liblzma/common/easy_encoder.c
727         src/liblzma/common/easy_encoder_memusage.c
728         src/liblzma/common/filter_buffer_encoder.c
729         src/liblzma/common/filter_encoder.c
730         src/liblzma/common/filter_encoder.h
731         src/liblzma/common/filter_flags_encoder.c
732         src/liblzma/common/index_encoder.c
733         src/liblzma/common/index_encoder.h
734         src/liblzma/common/stream_buffer_encoder.c
735         src/liblzma/common/stream_encoder.c
736         src/liblzma/common/stream_flags_encoder.c
737         src/liblzma/common/vli_encoder.c
738     )
740     if(ENABLE_THREADS)
741         target_sources(liblzma PRIVATE
742             src/liblzma/common/stream_encoder_mt.c
743         )
744     endif()
746     if(SIMPLE_ENCODERS)
747         target_sources(liblzma PRIVATE
748             src/liblzma/simple/simple_encoder.c
749             src/liblzma/simple/simple_encoder.h
750         )
751     endif()
753     if("lzma1" IN_LIST ENCODERS)
754         target_sources(liblzma PRIVATE
755             src/liblzma/lzma/lzma_encoder.c
756             src/liblzma/lzma/lzma_encoder.h
757             src/liblzma/lzma/lzma_encoder_optimum_fast.c
758             src/liblzma/lzma/lzma_encoder_optimum_normal.c
759             src/liblzma/lzma/lzma_encoder_private.h
760             src/liblzma/lzma/fastpos.h
761             src/liblzma/lz/lz_encoder.c
762             src/liblzma/lz/lz_encoder.h
763             src/liblzma/lz/lz_encoder_hash.h
764             src/liblzma/lz/lz_encoder_hash_table.h
765             src/liblzma/lz/lz_encoder_mf.c
766             src/liblzma/rangecoder/price.h
767             src/liblzma/rangecoder/price_table.c
768             src/liblzma/rangecoder/range_encoder.h
769         )
771         if(NOT ENABLE_SMALL)
772             target_sources(liblzma PRIVATE src/liblzma/lzma/fastpos_table.c)
773         endif()
774     endif()
776     if("lzma2" IN_LIST ENCODERS)
777         target_sources(liblzma PRIVATE
778             src/liblzma/lzma/lzma2_encoder.c
779             src/liblzma/lzma/lzma2_encoder.h
780         )
781     endif()
783     if("delta" IN_LIST ENCODERS)
784         set(HAVE_DELTA_CODER ON)
785         target_sources(liblzma PRIVATE
786             src/liblzma/delta/delta_encoder.c
787             src/liblzma/delta/delta_encoder.h
788         )
789     endif()
790 endif()
793 ############
794 # Decoders #
795 ############
797 set(DECODERS "${SUPPORTED_FILTERS}" CACHE STRING "Decoders to support")
799 set(SIMPLE_DECODERS OFF)
800 set(HAVE_DECODERS OFF)
802 foreach(DECODER IN LISTS DECODERS)
803     if(DECODER IN_LIST SUPPORTED_FILTERS)
804         set(HAVE_DECODERS ON)
806         if(NOT SIMPLE_DECODERS AND DECODER IN_LIST SIMPLE_FILTERS)
807             set(SIMPLE_DECODERS ON)
808         endif()
810         string(TOUPPER "${DECODER}" DECODER_UPPER)
811         add_compile_definitions("HAVE_DECODER_${DECODER_UPPER}")
812     else()
813         message(FATAL_ERROR "'${DECODER}' is not a supported decoder")
814     endif()
815 endforeach()
817 if(HAVE_DECODERS)
818     add_compile_definitions(HAVE_DECODERS)
820     target_sources(liblzma PRIVATE
821         src/liblzma/common/alone_decoder.c
822         src/liblzma/common/alone_decoder.h
823         src/liblzma/common/auto_decoder.c
824         src/liblzma/common/block_buffer_decoder.c
825         src/liblzma/common/block_decoder.c
826         src/liblzma/common/block_decoder.h
827         src/liblzma/common/block_header_decoder.c
828         src/liblzma/common/easy_decoder_memusage.c
829         src/liblzma/common/file_info.c
830         src/liblzma/common/filter_buffer_decoder.c
831         src/liblzma/common/filter_decoder.c
832         src/liblzma/common/filter_decoder.h
833         src/liblzma/common/filter_flags_decoder.c
834         src/liblzma/common/index_decoder.c
835         src/liblzma/common/index_decoder.h
836         src/liblzma/common/index_hash.c
837         src/liblzma/common/stream_buffer_decoder.c
838         src/liblzma/common/stream_decoder.c
839         src/liblzma/common/stream_flags_decoder.c
840         src/liblzma/common/stream_decoder.h
841         src/liblzma/common/vli_decoder.c
842     )
844     if(ENABLE_THREADS)
845         target_sources(liblzma PRIVATE
846             src/liblzma/common/stream_decoder_mt.c
847         )
848     endif()
850     if(SIMPLE_DECODERS)
851         target_sources(liblzma PRIVATE
852             src/liblzma/simple/simple_decoder.c
853             src/liblzma/simple/simple_decoder.h
854         )
855     endif()
857     if("lzma1" IN_LIST DECODERS)
858         target_sources(liblzma PRIVATE
859             src/liblzma/lzma/lzma_decoder.c
860             src/liblzma/lzma/lzma_decoder.h
861             src/liblzma/rangecoder/range_decoder.h
862             src/liblzma/lz/lz_decoder.c
863             src/liblzma/lz/lz_decoder.h
864         )
865     endif()
867     if("lzma2" IN_LIST DECODERS)
868         target_sources(liblzma PRIVATE
869             src/liblzma/lzma/lzma2_decoder.c
870             src/liblzma/lzma/lzma2_decoder.h
871         )
872     endif()
874     if("delta" IN_LIST DECODERS)
875         set(HAVE_DELTA_CODER ON)
876         target_sources(liblzma PRIVATE
877             src/liblzma/delta/delta_decoder.c
878             src/liblzma/delta/delta_decoder.h
879         )
880     endif()
881 endif()
883 # Some sources must appear if the filter is configured as either
884 # an encoder or decoder.
885 if("lzma1" IN_LIST ENCODERS OR "lzma1" IN_LIST DECODERS)
886     target_sources(liblzma PRIVATE
887         src/liblzma/rangecoder/range_common.h
888         src/liblzma/lzma/lzma_encoder_presets.c
889         src/liblzma/lzma/lzma_common.h
890     )
891 endif()
893 if(HAVE_DELTA_CODER)
894     target_sources(liblzma PRIVATE
895         src/liblzma/delta/delta_common.c
896         src/liblzma/delta/delta_common.h
897         src/liblzma/delta/delta_private.h
898     )
899 endif()
901 if(SIMPLE_ENCODERS OR SIMPLE_DECODERS)
902     target_sources(liblzma PRIVATE
903         src/liblzma/simple/simple_coder.c
904         src/liblzma/simple/simple_coder.h
905         src/liblzma/simple/simple_private.h
906     )
907 endif()
909 foreach(SIMPLE_CODER IN LISTS SIMPLE_FILTERS)
910     if(SIMPLE_CODER IN_LIST ENCODERS OR SIMPLE_CODER IN_LIST DECODERS)
911         target_sources(liblzma PRIVATE "src/liblzma/simple/${SIMPLE_CODER}.c")
912     endif()
913 endforeach()
916 #############
917 # MicroLZMA #
918 #############
920 option(MICROLZMA_ENCODER
921        "MicroLZMA encoder (needed by specific applications only)" ON)
923 option(MICROLZMA_DECODER
924        "MicroLZMA decoder (needed by specific applications only)" ON)
926 if(MICROLZMA_ENCODER)
927     if(NOT "lzma1" IN_LIST ENCODERS)
928         message(FATAL_ERROR "The LZMA1 encoder is required to support the "
929                             "MicroLZMA encoder")
930     endif()
932     target_sources(liblzma PRIVATE src/liblzma/common/microlzma_encoder.c)
933 endif()
935 if(MICROLZMA_DECODER)
936     if(NOT "lzma1" IN_LIST DECODERS)
937         message(FATAL_ERROR "The LZMA1 decoder is required to support the "
938                             "MicroLZMA decoder")
939     endif()
941     target_sources(liblzma PRIVATE src/liblzma/common/microlzma_decoder.c)
942 endif()
945 #############################
946 # lzip (.lz) format support #
947 #############################
949 option(LZIP_DECODER "Support lzip decoder" ON)
951 if(LZIP_DECODER)
952     # If lzip decoder support is requested, make sure LZMA1 decoder is enabled.
953     if(NOT "lzma1" IN_LIST DECODERS)
954         message(FATAL_ERROR "The LZMA1 decoder is required to support the "
955                             "lzip decoder")
956     endif()
958     add_compile_definitions(HAVE_LZIP_DECODER)
960     target_sources(liblzma PRIVATE
961         src/liblzma/common/lzip_decoder.c
962         src/liblzma/common/lzip_decoder.h
963     )
964 endif()
967 ##############
968 # Sandboxing #
969 ##############
971 # ON        Use sandboxing if a supported method is available in the OS.
972 # OFF       Disable sandboxing.
973 # capsicum  Require Capsicum (FreeBSD >= 10.2) and fail if not found.
974 # pledge    Require pledge(2) (OpenBSD >= 5.9) and fail if not found.
975 # landlock  Require Landlock (Linux >= 5.13) and fail if not found.
976 set(SUPPORTED_SANDBOX_METHODS ON OFF capsicum pledge landlock)
978 set(ENABLE_SANDBOX ON CACHE STRING
979     "Sandboxing method to use in 'xz', 'xzdec', and 'lzmadec'")
981 set_property(CACHE ENABLE_SANDBOX
982                 PROPERTY STRINGS "${SUPPORTED_SANDBOX_METHODS}")
984 if(NOT ENABLE_SANDBOX IN_LIST SUPPORTED_SANDBOX_METHODS)
985     message(FATAL_ERROR "'${ENABLE_SANDBOX}' is not a supported "
986                         "sandboxing method")
987 endif()
989 # When autodetecting, the search order is fixed and we must not find
990 # more than one method.
991 if(ENABLE_SANDBOX STREQUAL "OFF")
992     set(SANDBOX_FOUND ON)
993 else()
994     set(SANDBOX_FOUND OFF)
995 endif()
997 # Since xz and xzdec can both use sandboxing, the compile definition needed
998 # to use the sandbox must be added to both targets.
999 set(SANDBOX_COMPILE_DEFINITION OFF)
1001 # Sandboxing: Capsicum
1002 if(NOT SANDBOX_FOUND AND ENABLE_SANDBOX MATCHES "^ON$|^capsicum$")
1003     check_symbol_exists(cap_rights_limit sys/capsicum.h
1004                         HAVE_CAP_RIGHTS_LIMIT)
1005     if(HAVE_CAP_RIGHTS_LIMIT)
1006         set(SANDBOX_COMPILE_DEFINITION "HAVE_CAP_RIGHTS_LIMIT")
1007         set(SANDBOX_FOUND ON)
1008     endif()
1009 endif()
1011 # Sandboxing: pledge(2)
1012 if(NOT SANDBOX_FOUND AND ENABLE_SANDBOX MATCHES "^ON$|^pledge$")
1013     check_symbol_exists(pledge unistd.h HAVE_PLEDGE)
1014     if(HAVE_PLEDGE)
1015         set(SANDBOX_COMPILE_DEFINITION "HAVE_PLEDGE")
1016         set(SANDBOX_FOUND ON)
1017     endif()
1018 endif()
1020 # Sandboxing: Landlock
1021 if(NOT SANDBOX_FOUND AND ENABLE_SANDBOX MATCHES "^ON$|^landlock$")
1022     # A compile check is done here because some systems have
1023     # linux/landlock.h, but do not have the syscalls defined
1024     # in order to actually use Linux Landlock.
1025     check_c_source_compiles("
1026         #include <linux/landlock.h>
1027         #include <sys/syscall.h>
1028         #include <sys/prctl.h>
1030         void my_sandbox(void)
1031         {
1032             (void)prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0);
1033             (void)SYS_landlock_create_ruleset;
1034             (void)SYS_landlock_restrict_self;
1035             (void)LANDLOCK_CREATE_RULESET_VERSION;
1036             return;
1037         }
1039         int main(void) { return 0; }
1040         "
1041     HAVE_LINUX_LANDLOCK)
1043     if(HAVE_LINUX_LANDLOCK)
1044         set(SANDBOX_COMPILE_DEFINITION "HAVE_LINUX_LANDLOCK")
1045         set(SANDBOX_FOUND ON)
1047         # Of our three sandbox methods, only Landlock is incompatible
1048         # with -fsanitize. FreeBSD 13.2 with Capsicum was tested with
1049         # -fsanitize=address,undefined and had no issues. OpenBSD (as
1050         # of version 7.4) has minimal support for process instrumentation.
1051         # OpenBSD does not distribute the additional libraries needed
1052         # (libasan, libubsan, etc.) with GCC or Clang needed for runtime
1053         # sanitization support and instead only support
1054         # -fsanitize-minimal-runtime for minimal undefined behavior
1055         # sanitization. This minimal support is compatible with our use
1056         # of the Pledge sandbox. So only Landlock will result in a
1057         # build that cannot compress or decompress a single file to
1058         # standard out.
1059         if(CMAKE_C_FLAGS MATCHES "-fsanitize=")
1060             message(SEND_ERROR
1061                     "CMAKE_C_FLAGS or the environment variable CFLAGS "
1062                     "contains '-fsanitize=' which is incompatible "
1063                     "with Landlock sandboxing. Use -DENABLE_SANDBOX=OFF "
1064                     "as an argument to 'cmake' when using '-fsanitize'.")
1065         endif()
1066     endif()
1067 endif()
1069 if(NOT SANDBOX_FOUND AND NOT ENABLE_SANDBOX MATCHES "^ON$|^OFF$")
1070     message(SEND_ERROR "ENABLE_SANDBOX=${ENABLE_SANDBOX} was used but "
1071                         "support for the sandboxing method wasn't found.")
1072 endif()
1076 # Put the tuklib functions under the lzma_ namespace.
1077 target_compile_definitions(liblzma PRIVATE TUKLIB_SYMBOL_PREFIX=lzma_)
1078 tuklib_cpucores(liblzma)
1079 tuklib_physmem(liblzma)
1081 # While liblzma can be built without tuklib_cpucores or tuklib_physmem
1082 # modules, the liblzma API functions lzma_cputhreads() and lzma_physmem()
1083 # will then be useless (which isn't too bad but still unfortunate). Since
1084 # I expect the CMake-based builds to be only used on systems that are
1085 # supported by these tuklib modules, problems with these tuklib modules
1086 # are considered a hard error for now. This hopefully helps to catch bugs
1087 # in the CMake versions of the tuklib checks.
1088 if(NOT TUKLIB_CPUCORES_FOUND OR NOT TUKLIB_PHYSMEM_FOUND)
1089     # Use SEND_ERROR instead of FATAL_ERROR. If someone reports a bug,
1090     # seeing the results of the remaining checks can be useful too.
1091     message(SEND_ERROR
1092             "tuklib_cpucores() or tuklib_physmem() failed. "
1093             "Unless you really are building for a system where these "
1094             "modules are not supported (unlikely), this is a bug in the "
1095             "included cmake/tuklib_*.cmake files that should be fixed. "
1096             "To build anyway, edit this CMakeLists.txt to ignore this error.")
1097 endif()
1099 # Check for __attribute__((__constructor__)) support.
1100 # This needs -Werror because some compilers just warn
1101 # about this being unsupported.
1102 cmake_push_check_state()
1103 set(CMAKE_REQUIRED_FLAGS "-Werror")
1104 check_c_source_compiles("
1105         __attribute__((__constructor__))
1106         static void my_constructor_func(void) { return; }
1107         int main(void) { return 0; }
1108     "
1109     HAVE_FUNC_ATTRIBUTE_CONSTRUCTOR)
1110 cmake_pop_check_state()
1111 tuklib_add_definition_if(liblzma HAVE_FUNC_ATTRIBUTE_CONSTRUCTOR)
1113 # The Win95 threading lacks a thread-safe one-time initialization function.
1114 # The one-time initialization is needed for crc32_small.c and crc64_small.c
1115 # create the CRC tables. So if small mode is enabled, the threading mode is
1116 # win95, and the compiler does not support attribute constructor, then we
1117 # would end up with a multithreaded build that is thread-unsafe. As a
1118 # result this configuration is not allowed.
1119 if(USE_WIN95_THREADS AND ENABLE_SMALL AND NOT HAVE_FUNC_ATTRIBUTE_CONSTRUCTOR)
1120     message(SEND_ERROR "Threading method win95 and ENABLE_SMALL "
1121                         "cannot be used at the same time with a compiler "
1122                         "that doesn't support "
1123                         "__attribute__((__constructor__))")
1124 endif()
1127 # cpuid.h
1128 check_include_file(cpuid.h HAVE_CPUID_H)
1129 tuklib_add_definition_if(liblzma HAVE_CPUID_H)
1131 # immintrin.h:
1132 check_include_file(immintrin.h HAVE_IMMINTRIN_H)
1133 if(HAVE_IMMINTRIN_H)
1134     target_compile_definitions(liblzma PRIVATE HAVE_IMMINTRIN_H)
1136     # SSE2 intrinsics:
1137     check_c_source_compiles("
1138             #include <immintrin.h>
1139             int main(void)
1140             {
1141                 __m128i x = { 0 };
1142                 _mm_movemask_epi8(x);
1143                 return 0;
1144             }
1145         "
1146         HAVE__MM_MOVEMASK_EPI8)
1147     tuklib_add_definition_if(liblzma HAVE__MM_MOVEMASK_EPI8)
1149     # CLMUL intrinsic:
1150     option(ALLOW_CLMUL_CRC "Allow carryless multiplication for CRC \
1151 calculation if supported by the system" ON)
1153     if(ALLOW_CLMUL_CRC)
1154         check_c_source_compiles("
1155                 #include <immintrin.h>
1156                 #if defined(__e2k__) && __iset__ < 6
1157                 #   error
1158                 #endif
1159                 #if (defined(__GNUC__) || defined(__clang__)) \
1160                         && !defined(__EDG__)
1161                 __attribute__((__target__(\"ssse3,sse4.1,pclmul\")))
1162                 #endif
1163                 __m128i my_clmul(__m128i a)
1164                 {
1165                     const __m128i b = _mm_set_epi64x(1, 2);
1166                     return _mm_clmulepi64_si128(a, b, 0);
1167                 }
1168                 int main(void) { return 0; }
1169             "
1170             HAVE_USABLE_CLMUL)
1171         tuklib_add_definition_if(liblzma HAVE_USABLE_CLMUL)
1172     endif()
1173 endif()
1175 # ARM64 C Language Extensions define CRC32 functions in arm_acle.h.
1176 # These are supported by at least GCC and Clang which both need
1177 # __attribute__((__target__("+crc"))), unless the needed compiler flags
1178 # are used to support the CRC instruction.
1179 option(ALLOW_ARM64_CRC32 "Allow ARM64 CRC32 instruction if supported by \
1180 the system" ON)
1182 if(ALLOW_ARM64_CRC32)
1183     check_c_source_compiles("
1184             #include <stdint.h>
1186             #ifndef _MSC_VER
1187             #include <arm_acle.h>
1188             #endif
1190             #if (defined(__GNUC__) || defined(__clang__)) && !defined(__EDG__)
1191             __attribute__((__target__(\"+crc\")))
1192             #endif
1193             uint32_t my_crc(uint32_t a, uint64_t b)
1194             {
1195                 return __crc32d(a, b);
1196             }
1197             int main(void) { return 0; }
1198         "
1199         HAVE_ARM64_CRC32)
1201     if(HAVE_ARM64_CRC32)
1202         target_compile_definitions(liblzma PRIVATE HAVE_ARM64_CRC32)
1204         # Check for ARM64 CRC32 instruction runtime detection.
1205         # getauxval() is supported on Linux.
1206         check_symbol_exists(getauxval sys/auxv.h HAVE_GETAUXVAL)
1207         tuklib_add_definition_if(liblzma HAVE_GETAUXVAL)
1209         # elf_aux_info() is supported on FreeBSD.
1210         check_symbol_exists(elf_aux_info sys/auxv.h HAVE_ELF_AUX_INFO)
1211         tuklib_add_definition_if(liblzma HAVE_ELF_AUX_INFO)
1213         # sysctlbyname("hw.optional.armv8_crc32", ...) is supported on Darwin
1214         # (macOS, iOS, etc.). Note that sysctlbyname() is supported on FreeBSD,
1215         # NetBSD, and possibly others too but the string is specific to
1216         # Apple OSes. The C code is responsible for checking
1217         # defined(__APPLE__) before using
1218         # sysctlbyname("hw.optional.armv8_crc32", ...).
1219         check_symbol_exists(sysctlbyname sys/sysctl.h HAVE_SYSCTLBYNAME)
1220         tuklib_add_definition_if(liblzma HAVE_SYSCTLBYNAME)
1221     endif()
1222 endif()
1225 # Symbol visibility support:
1227 # The C_VISIBILITY_PRESET property takes care of adding the compiler
1228 # option -fvisibility=hidden (or equivalent) if and only if it is supported.
1230 # HAVE_VISIBILITY should always be defined to 0 or 1. It tells liblzma
1231 # if __attribute__((__visibility__("default")))
1232 # and __attribute__((__visibility__("hidden"))) are supported.
1233 # Those are useful only when the compiler supports -fvisibility=hidden
1234 # or such option so HAVE_VISIBILITY should be 1 only when both option and
1235 # the attribute support are present. HAVE_VISIBILITY is ignored on Windows
1236 # and Cygwin by the liblzma C code; __declspec(dllexport) is used instead.
1238 # CMake's GenerateExportHeader module is too fancy since liblzma already
1239 # has the necessary macros. Instead, check CMake's internal variable
1240 # CMAKE_C_COMPILE_OPTIONS_VISIBILITY (it's the C-specific variant of
1241 # CMAKE_<LANG>_COMPILE_OPTIONS_VISIBILITY) which contains the compiler
1242 # command line option for visibility support. It's empty or unset when
1243 # visibility isn't supported. (It was added to CMake 2.8.12 in the commit
1244 # 0e9f4bc00c6b26f254e74063e4026ac33b786513 in 2013.) This way we don't
1245 # set HAVE_VISIBILITY to 1 when visibility isn't actually supported.
1246 if(BUILD_SHARED_LIBS AND CMAKE_C_COMPILE_OPTIONS_VISIBILITY)
1247     set_target_properties(liblzma PROPERTIES C_VISIBILITY_PRESET hidden)
1248     target_compile_definitions(liblzma PRIVATE HAVE_VISIBILITY=1)
1249 else()
1250     target_compile_definitions(liblzma PRIVATE HAVE_VISIBILITY=0)
1251 endif()
1253 if(WIN32)
1254     if(BUILD_SHARED_LIBS)
1255         # Add the Windows resource file for liblzma.dll.
1256         target_sources(liblzma PRIVATE src/liblzma/liblzma_w32res.rc)
1258         set_target_properties(liblzma PROPERTIES
1259             LINK_DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/src/common/common_w32res.rc"
1260         )
1262         # Export the public API symbols with __declspec(dllexport).
1263         target_compile_definitions(liblzma PRIVATE DLL_EXPORT)
1265         if(NOT MSVC)
1266             # Create a DEF file. The linker puts the ordinal numbers there
1267             # too so the output from the linker isn't our final file.
1268             target_link_options(liblzma PRIVATE
1269                                 "-Wl,--output-def,liblzma.def.in")
1271             # Remove the ordinal numbers from the DEF file so that
1272             # no one will create an import library that links by ordinal
1273             # instead of by name. We don't maintain a DEF file so the
1274             # ordinal numbers aren't stable.
1275             add_custom_command(TARGET liblzma POST_BUILD
1276                 COMMAND "${CMAKE_COMMAND}"
1277                     -DINPUT_FILE=liblzma.def.in
1278                     -DOUTPUT_FILE=liblzma.def
1279                     -P
1280                     "${CMAKE_CURRENT_SOURCE_DIR}/cmake/remove-ordinals.cmake"
1281                 BYPRODUCTS "liblzma.def"
1282                 VERBATIM)
1283         endif()
1284     else()
1285         # Disable __declspec(dllimport) when linking against static liblzma.
1286         target_compile_definitions(liblzma INTERFACE LZMA_API_STATIC)
1287     endif()
1288 elseif(BUILD_SHARED_LIBS AND SYMBOL_VERSIONING STREQUAL "linux")
1289     # Note that adding link options doesn't affect static builds
1290     # but HAVE_SYMBOL_VERSIONS_LINUX must not be used with static builds
1291     # because it would put symbol versions into the static library which
1292     # can cause problems. It's clearer if all symver related things are
1293     # omitted when not building a shared library.
1294     #
1295     # NOTE: Set it explicitly to 1 to make it clear that versioning is
1296     # done unconditionally in the C files.
1297     target_compile_definitions(liblzma PRIVATE HAVE_SYMBOL_VERSIONS_LINUX=1)
1298     target_link_options(liblzma PRIVATE
1299         "-Wl,--version-script=${CMAKE_CURRENT_SOURCE_DIR}/src/liblzma/liblzma_linux.map"
1300     )
1301     set_target_properties(liblzma PROPERTIES
1302         LINK_DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/src/liblzma/liblzma_linux.map"
1303     )
1304 elseif(BUILD_SHARED_LIBS AND SYMBOL_VERSIONING STREQUAL "generic")
1305     target_link_options(liblzma PRIVATE
1306         "-Wl,--version-script=${CMAKE_CURRENT_SOURCE_DIR}/src/liblzma/liblzma_generic.map"
1307     )
1308     set_target_properties(liblzma PROPERTIES
1309         LINK_DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/src/liblzma/liblzma_generic.map"
1310     )
1311 endif()
1313 set_target_properties(liblzma PROPERTIES
1314     # At least for now the package versioning matches the rules used for
1315     # shared library versioning (excluding development releases) so it is
1316     # fine to use the package version here.
1317     SOVERSION "${xz_VERSION_MAJOR}"
1318     VERSION "${xz_VERSION}"
1320     # It's liblzma.so or liblzma.dll, not libliblzma.so or lzma.dll.
1321     # Avoid the name lzma.dll because it would conflict with LZMA SDK.
1322     PREFIX ""
1323     IMPORT_PREFIX ""
1326 # Create liblzma-config-version.cmake.
1328 # FIXME: SameMajorVersion is correct for stable releases but it is wrong
1329 # for development releases where each release may have incompatible changes.
1330 include(CMakePackageConfigHelpers)
1331 write_basic_package_version_file(
1332     "${CMAKE_CURRENT_BINARY_DIR}/liblzma-config-version.cmake"
1333     VERSION "${liblzma_VERSION}"
1334     COMPATIBILITY SameMajorVersion)
1336 # Create liblzma-config.cmake. We use this spelling instead of
1337 # liblzmaConfig.cmake to make find_package work in case insensitive
1338 # manner even with case sensitive file systems. This gives more consistent
1339 # behavior between operating systems. This optionally includes a dependency
1340 # on a threading library, so the contents are created in two separate parts.
1341 # The "second half" is always needed, so create it first.
1342 set(LZMA_CONFIG_CONTENTS
1343 "include(\"\${CMAKE_CURRENT_LIST_DIR}/liblzma-targets.cmake\")
1345 if(NOT TARGET LibLZMA::LibLZMA)
1346     # Be compatible with the spelling used by the FindLibLZMA module. This
1347     # doesn't use ALIAS because it would make CMake resolve LibLZMA::LibLZMA
1348     # to liblzma::liblzma instead of keeping the original spelling. Keeping
1349     # the original spelling is important for good FindLibLZMA compatibility.
1350     add_library(LibLZMA::LibLZMA INTERFACE IMPORTED)
1351     set_target_properties(LibLZMA::LibLZMA PROPERTIES
1352                           INTERFACE_LINK_LIBRARIES liblzma::liblzma)
1353 endif()
1356 if(USE_POSIX_THREADS)
1357     set(LZMA_CONFIG_CONTENTS
1358 "include(CMakeFindDependencyMacro)
1359 set(THREADS_PREFER_PTHREAD_FLAG TRUE)
1360 find_dependency(Threads)
1362 ${LZMA_CONFIG_CONTENTS}
1364 endif()
1366 file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/liblzma-config.cmake"
1367         "${LZMA_CONFIG_CONTENTS}")
1369 # Create liblzma.pc.
1370 set(prefix "${CMAKE_INSTALL_PREFIX}")
1371 set(exec_prefix "${CMAKE_INSTALL_PREFIX}")
1372 set(libdir "${CMAKE_INSTALL_FULL_LIBDIR}")
1373 set(includedir "${CMAKE_INSTALL_FULL_INCLUDEDIR}")
1374 set(PTHREAD_CFLAGS "${CMAKE_THREAD_LIBS_INIT}")
1375 configure_file(src/liblzma/liblzma.pc.in liblzma.pc
1376                @ONLY
1377                NEWLINE_STYLE LF)
1379 # Install the library binary. The INCLUDES specifies the include path that
1380 # is exported for other projects to use but it doesn't install any files.
1381 install(TARGETS liblzma EXPORT liblzmaTargets
1382         RUNTIME  DESTINATION "${CMAKE_INSTALL_BINDIR}"
1383                  COMPONENT liblzma_Runtime
1384         LIBRARY  DESTINATION "${CMAKE_INSTALL_LIBDIR}"
1385                  COMPONENT liblzma_Runtime
1386                  NAMELINK_COMPONENT liblzma_Development
1387         ARCHIVE  DESTINATION "${CMAKE_INSTALL_LIBDIR}"
1388                  COMPONENT liblzma_Development
1389         INCLUDES DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}")
1391 # Install the liblzma API headers. These use a subdirectory so
1392 # this has to be done as a separate step.
1393 install(DIRECTORY src/liblzma/api/
1394         COMPONENT liblzma_Development
1395         DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}"
1396         FILES_MATCHING PATTERN "*.h")
1398 # Install the CMake files that other packages can use to find liblzma.
1399 set(liblzma_INSTALL_CMAKEDIR
1400     "${CMAKE_INSTALL_LIBDIR}/cmake/liblzma"
1401     CACHE STRING "Path to liblzma's .cmake files")
1403 install(EXPORT liblzmaTargets
1404         NAMESPACE liblzma::
1405         FILE liblzma-targets.cmake
1406         DESTINATION "${liblzma_INSTALL_CMAKEDIR}"
1407         COMPONENT liblzma_Development)
1409 install(FILES "${CMAKE_CURRENT_BINARY_DIR}/liblzma-config.cmake"
1410               "${CMAKE_CURRENT_BINARY_DIR}/liblzma-config-version.cmake"
1411         DESTINATION "${liblzma_INSTALL_CMAKEDIR}"
1412         COMPONENT liblzma_Development)
1414 if(NOT MSVC)
1415     install(FILES "${CMAKE_CURRENT_BINARY_DIR}/liblzma.pc"
1416             DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig"
1417             COMPONENT liblzma_Development)
1418 endif()
1421 #############################################################################
1422 # Helper functions for installing files
1423 #############################################################################
1425 # For each non-empty element in the list LINK_NAMES, creates symbolic links
1426 # ${LINK_NAME}${LINK_SUFFIX} -> ${TARGET_NAME} in the directory ${DIR}.
1427 # The target file should exist because on Cygwin and MSYS2 symlink creation
1428 # can fail under certain conditions if the target doesn't exist.
1429 function(my_install_symlinks COMPONENT DIR TARGET_NAME LINK_SUFFIX LINK_NAMES)
1430     install(CODE "set(D \"\$ENV{DESTDIR}\${CMAKE_INSTALL_PREFIX}/${DIR}\")
1431                  foreach(L ${LINK_NAMES})
1432                      file(CREATE_LINK \"${TARGET_NAME}\"
1433                                       \"\${D}/\${L}${LINK_SUFFIX}\"
1434                                       SYMBOLIC)
1435                  endforeach()"
1436             COMPONENT "${COMPONENT}")
1437 endfunction()
1439 # Installs a man page file of a given language ("" for the untranslated file)
1440 # and optionally its alternative names as symlinks. This is a helper function
1441 # for my_install_man() below.
1442 function(my_install_man_lang COMPONENT SRC_FILE MAN_LANG LINK_NAMES)
1443     # Get the man page section from the filename suffix.
1444     string(REGEX REPLACE "^.*\.([^/.]+)$" "\\1" MAN_SECTION "${SRC_FILE}")
1446     # A few man pages might be missing from translations.
1447     # Don't attempt to install them or create the related symlinks.
1448     if(NOT MAN_LANG STREQUAL "" AND NOT EXISTS "${SRC_FILE}")
1449         return()
1450     endif()
1452     # Installing the file must be done before creating the symlinks
1453     # due to Cygwin and MSYS2.
1454     install(FILES "${SRC_FILE}"
1455             DESTINATION "${CMAKE_INSTALL_MANDIR}/${MAN_LANG}/man${MAN_SECTION}"
1456             COMPONENT "${COMPONENT}")
1458     # Get the basename of the file to be used as the symlink target.
1459     get_filename_component(BASENAME "${SRC_FILE}" NAME)
1461     # LINK_NAMES don't contain the man page filename suffix (like ".1")
1462     # so it needs to be told to my_install_symlinks.
1463     my_install_symlinks("${COMPONENT}"
1464                         "${CMAKE_INSTALL_MANDIR}/${MAN_LANG}/man${MAN_SECTION}"
1465                         "${BASENAME}" ".${MAN_SECTION}" "${LINK_NAMES}")
1466 endfunction()
1468 # Installs a man page file and optionally its alternative names as symlinks.
1469 # Does the same for translations if ENABLE_NLS.
1470 function(my_install_man COMPONENT SRC_FILE LINK_NAMES)
1471     my_install_man_lang("${COMPONENT}" "${SRC_FILE}" "" "${LINK_NAMES}")
1473     if(ENABLE_NLS)
1474         # Find the translated versions of this man page.
1475         get_filename_component(BASENAME "${SRC_FILE}" NAME)
1476         file(GLOB MAN_FILES "po4a/man/*/${BASENAME}")
1478         foreach(F ${MAN_FILES})
1479             get_filename_component(MAN_LANG "${F}" DIRECTORY)
1480             get_filename_component(MAN_LANG "${MAN_LANG}" NAME)
1481             my_install_man_lang("${COMPONENT}" "${F}" "${MAN_LANG}"
1482                                 "${LINK_NAMES}")
1483         endforeach()
1484     endif()
1485 endfunction()
1488 #############################################################################
1489 # libgnu (getopt_long)
1490 #############################################################################
1492 # This mirrors how the Autotools build system handles the getopt_long
1493 # replacement, calling the object library libgnu since the replacement
1494 # version comes from Gnulib.
1495 add_library(libgnu OBJECT)
1497 # CMake requires that even an object library must have at least once source
1498 # file. So we give it a header file that results in no output files.
1500 # NOTE: Using a file outside the lib directory makes it possible to
1501 # delete lib/*.h and lib/*.c and still keep the build working if
1502 # getopt_long replacement isn't needed. It's convenient if one wishes
1503 # to be certain that no GNU LGPL code gets included in the binaries.
1504 target_sources(libgnu PRIVATE src/common/sysdefs.h)
1506 # The Ninja Generator requires setting the linker language since it cannot
1507 # guess the programming language of just a header file. Setting this
1508 # property avoids needing an empty .c file or an non-empty unnecessary .c
1509 # file.
1510 set_target_properties(libgnu PROPERTIES LINKER_LANGUAGE C)
1512 # Create /lib directory in the build directory and add it to the include path.
1513 file(MAKE_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/lib")
1514 target_include_directories(libgnu PUBLIC "${CMAKE_CURRENT_BINARY_DIR}/lib")
1516 # Include /lib from the source directory. It does no harm even if none of
1517 # the Gnulib replacements are used.
1518 target_include_directories(libgnu PUBLIC lib)
1520 # The command line tools need getopt_long in order to parse arguments. If
1521 # the system does not have a getopt_long implementation we can use the one
1522 # from Gnulib instead.
1523 check_symbol_exists(getopt_long getopt.h HAVE_GETOPT_LONG)
1525 if(NOT HAVE_GETOPT_LONG)
1526     # Set the __GETOPT_PREFIX definition to "rpl_" (replacement) to avoid
1527     # name conflicts with libc symbols. The same prefix is set if using
1528     # the Autotools build (m4/getopt.m4).
1529     target_compile_definitions(libgnu PUBLIC "__GETOPT_PREFIX=rpl_")
1531     # Create a custom copy command to copy the getopt header to the build
1532     # directory and re-copy it if it is updated. (Gnulib does it this way
1533     # because it allows choosing which .in.h files to actually use in the
1534     # build. We need just getopt.h so this is a bit overcomplicated for
1535     # a single header file only.)
1536     add_custom_command(OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/lib/getopt.h"
1537         COMMAND "${CMAKE_COMMAND}" -E copy
1538             "${CMAKE_CURRENT_SOURCE_DIR}/lib/getopt.in.h"
1539             "${CMAKE_CURRENT_BINARY_DIR}/lib/getopt.h"
1540         MAIN_DEPENDENCY "${CMAKE_CURRENT_SOURCE_DIR}/lib/getopt.in.h"
1541         VERBATIM)
1543     target_sources(libgnu PRIVATE
1544         lib/getopt1.c
1545         lib/getopt.c
1546         lib/getopt_int.h
1547         lib/getopt-cdefs.h
1548         lib/getopt-core.h
1549         lib/getopt-ext.h
1550         lib/getopt-pfx-core.h
1551         lib/getopt-pfx-ext.h
1552         "${CMAKE_CURRENT_BINARY_DIR}/lib/getopt.h"
1553     )
1554 endif()
1557 #############################################################################
1558 # xzdec and lzmadec
1559 #############################################################################
1561 if(HAVE_DECODERS AND (NOT MSVC OR MSVC_VERSION GREATER_EQUAL 1900))
1562     foreach(XZDEC xzdec lzmadec)
1563         add_executable("${XZDEC}"
1564             src/common/sysdefs.h
1565             src/common/tuklib_common.h
1566             src/common/tuklib_config.h
1567             src/common/tuklib_exit.c
1568             src/common/tuklib_exit.h
1569             src/common/tuklib_gettext.h
1570             src/common/tuklib_progname.c
1571             src/common/tuklib_progname.h
1572             src/xzdec/xzdec.c
1573         )
1575         target_include_directories("${XZDEC}" PRIVATE
1576             src/common
1577             src/liblzma/api
1578         )
1580         target_link_libraries("${XZDEC}" PRIVATE liblzma libgnu)
1582         if(WIN32)
1583             # Add the Windows resource file for xzdec.exe or lzmadec.exe.
1584             target_sources("${XZDEC}" PRIVATE src/xzdec/xzdec_w32res.rc)
1585             set_target_properties("${XZDEC}" PROPERTIES
1586                 LINK_DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/src/common/common_w32res.rc"
1587             )
1588         endif()
1590         if(SANDBOX_COMPILE_DEFINITION)
1591             target_compile_definitions("${XZDEC}" PRIVATE
1592                                     "${SANDBOX_COMPILE_DEFINITION}")
1593         endif()
1595         tuklib_progname("${XZDEC}")
1597         install(TARGETS "${XZDEC}"
1598                 RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}"
1599                         COMPONENT "${XZDEC}_Runtime")
1600     endforeach()
1602     # This is the only build-time difference with lzmadec.
1603     target_compile_definitions(lzmadec PRIVATE "LZMADEC")
1605     if(UNIX)
1606         # NOTE: This puts the lzmadec.1 symlinks into xzdec_Documentation.
1607         # This isn't great but doing them separately with translated
1608         # man pages would require extra code. So this has to suffice for now.
1609         my_install_man(xzdec_Documentation src/xzdec/xzdec.1 lzmadec)
1610     endif()
1611 endif()
1614 #############################################################################
1615 # lzmainfo
1616 #############################################################################
1618 if(HAVE_DECODERS AND (NOT MSVC OR MSVC_VERSION GREATER_EQUAL 1900))
1619     add_executable(lzmainfo
1620         src/common/sysdefs.h
1621         src/common/tuklib_common.h
1622         src/common/tuklib_config.h
1623         src/common/tuklib_exit.c
1624         src/common/tuklib_exit.h
1625         src/common/tuklib_gettext.h
1626         src/common/tuklib_progname.c
1627         src/common/tuklib_progname.h
1628         src/lzmainfo/lzmainfo.c
1629     )
1631     target_include_directories(lzmainfo PRIVATE
1632         src/common
1633         src/liblzma/api
1634     )
1636     target_link_libraries(lzmainfo PRIVATE liblzma libgnu)
1638     if(WIN32)
1639         # Add the Windows resource file for lzmainfo.exe.
1640         target_sources(lzmainfo PRIVATE src/lzmainfo/lzmainfo_w32res.rc)
1641         set_target_properties(lzmainfo PROPERTIES
1642             LINK_DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/src/common/common_w32res.rc"
1643         )
1644     endif()
1646     tuklib_progname(lzmainfo)
1648     # NOTE: The translations are in the "xz" domain and the .mo files are
1649     # installed as part of the "xz" target.
1650     if(ENABLE_NLS)
1651         target_link_libraries(lzmainfo PRIVATE Intl::Intl)
1653         target_compile_definitions(lzmainfo PRIVATE
1654                 ENABLE_NLS
1655                 PACKAGE="${TRANSLATION_DOMAIN}"
1656                 LOCALEDIR="${LOCALEDIR_DEFINITION}"
1657         )
1658     endif()
1660     install(TARGETS lzmainfo
1661             RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}"
1662                     COMPONENT lzmainfo_Runtime)
1664     if(UNIX)
1665         my_install_man(lzmainfo_Documentation src/lzmainfo/lzmainfo.1 "")
1666     endif()
1667 endif()
1670 #############################################################################
1671 # xz
1672 #############################################################################
1674 if(NOT MSVC OR MSVC_VERSION GREATER_EQUAL 1900)
1675     add_executable(xz
1676         src/common/mythread.h
1677         src/common/sysdefs.h
1678         src/common/tuklib_common.h
1679         src/common/tuklib_config.h
1680         src/common/tuklib_exit.c
1681         src/common/tuklib_exit.h
1682         src/common/tuklib_gettext.h
1683         src/common/tuklib_integer.h
1684         src/common/tuklib_mbstr.h
1685         src/common/tuklib_mbstr_fw.c
1686         src/common/tuklib_mbstr_width.c
1687         src/common/tuklib_open_stdxxx.c
1688         src/common/tuklib_open_stdxxx.h
1689         src/common/tuklib_progname.c
1690         src/common/tuklib_progname.h
1691         src/xz/args.c
1692         src/xz/args.h
1693         src/xz/coder.c
1694         src/xz/coder.h
1695         src/xz/file_io.c
1696         src/xz/file_io.h
1697         src/xz/hardware.c
1698         src/xz/hardware.h
1699         src/xz/main.c
1700         src/xz/main.h
1701         src/xz/message.c
1702         src/xz/message.h
1703         src/xz/mytime.c
1704         src/xz/mytime.h
1705         src/xz/options.c
1706         src/xz/options.h
1707         src/xz/private.h
1708         src/xz/sandbox.c
1709         src/xz/sandbox.h
1710         src/xz/signals.c
1711         src/xz/signals.h
1712         src/xz/suffix.c
1713         src/xz/suffix.h
1714         src/xz/util.c
1715         src/xz/util.h
1716     )
1718     target_include_directories(xz PRIVATE
1719         src/common
1720         src/liblzma/api
1721     )
1723     if(HAVE_DECODERS)
1724         target_sources(xz PRIVATE
1725             src/xz/list.c
1726             src/xz/list.h
1727         )
1728     endif()
1730     target_link_libraries(xz PRIVATE liblzma libgnu)
1732     target_compile_definitions(xz PRIVATE ASSUME_RAM=128)
1734     if(WIN32)
1735         # Add the Windows resource file for xz.exe.
1736         target_sources(xz PRIVATE src/xz/xz_w32res.rc)
1737         set_target_properties(xz PROPERTIES
1738             LINK_DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/src/common/common_w32res.rc"
1739         )
1740     endif()
1742     if(SANDBOX_COMPILE_DEFINITION)
1743         target_compile_definitions(xz PRIVATE "${SANDBOX_COMPILE_DEFINITION}")
1744     endif()
1746     tuklib_progname(xz)
1747     tuklib_mbstr(xz)
1749     check_symbol_exists(optreset getopt.h HAVE_OPTRESET)
1750     tuklib_add_definition_if(xz HAVE_OPTRESET)
1752     check_symbol_exists(posix_fadvise fcntl.h HAVE_POSIX_FADVISE)
1753     tuklib_add_definition_if(xz HAVE_POSIX_FADVISE)
1755     # How to get file time:
1756     check_struct_has_member("struct stat" st_atim.tv_nsec
1757                             "sys/types.h;sys/stat.h"
1758                             HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC)
1759     if(HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC)
1760         tuklib_add_definitions(xz HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC)
1761     else()
1762         check_struct_has_member("struct stat" st_atimespec.tv_nsec
1763                                 "sys/types.h;sys/stat.h"
1764                                 HAVE_STRUCT_STAT_ST_ATIMESPEC_TV_NSEC)
1765         if(HAVE_STRUCT_STAT_ST_ATIMESPEC_TV_NSEC)
1766             tuklib_add_definitions(xz HAVE_STRUCT_STAT_ST_ATIMESPEC_TV_NSEC)
1767         else()
1768             check_struct_has_member("struct stat" st_atimensec
1769                                     "sys/types.h;sys/stat.h"
1770                                     HAVE_STRUCT_STAT_ST_ATIMENSEC)
1771             tuklib_add_definition_if(xz HAVE_STRUCT_STAT_ST_ATIMENSEC)
1772         endif()
1773     endif()
1775     # How to set file time:
1776     check_symbol_exists(futimens "sys/types.h;sys/stat.h" HAVE_FUTIMENS)
1777     if(HAVE_FUTIMENS)
1778         tuklib_add_definitions(xz HAVE_FUTIMENS)
1779     else()
1780         check_symbol_exists(futimes "sys/time.h" HAVE_FUTIMES)
1781         if(HAVE_FUTIMES)
1782             tuklib_add_definitions(xz HAVE_FUTIMES)
1783         else()
1784             check_symbol_exists(futimesat "sys/time.h" HAVE_FUTIMESAT)
1785             if(HAVE_FUTIMESAT)
1786                 tuklib_add_definitions(xz HAVE_FUTIMESAT)
1787             else()
1788                 check_symbol_exists(utimes "sys/time.h" HAVE_UTIMES)
1789                 if(HAVE_UTIMES)
1790                     tuklib_add_definitions(xz HAVE_UTIMES)
1791                 else()
1792                     check_symbol_exists(_futime "sys/utime.h" HAVE__FUTIME)
1793                     if(HAVE__FUTIME)
1794                         tuklib_add_definitions(xz HAVE__FUTIME)
1795                     else()
1796                         check_symbol_exists(utime "utime.h" HAVE_UTIME)
1797                         tuklib_add_definition_if(xz HAVE_UTIME)
1798                     endif()
1799                 endif()
1800             endif()
1801         endif()
1802     endif()
1804     if(ENABLE_NLS)
1805         target_link_libraries(xz PRIVATE Intl::Intl)
1807         target_compile_definitions(xz PRIVATE
1808                 ENABLE_NLS
1809                 PACKAGE="${TRANSLATION_DOMAIN}"
1810                 LOCALEDIR="${LOCALEDIR_DEFINITION}"
1811         )
1813         file(STRINGS po/LINGUAS LINGUAS)
1815         # Where to find .gmo files. If msgfmt is available, the .po files
1816         # will be converted as part of the build. Otherwise we will use
1817         # the pre-generated .gmo files which are included in XZ Utils
1818         # tarballs by Autotools.
1819         set(GMO_DIR "${CMAKE_CURRENT_SOURCE_DIR}/po")
1821         if(GETTEXT_FOUND)
1822             # NOTE: gettext_process_po_files' INSTALL_DESTINATION is
1823             # incompatible with how Autotools requires the .po files to
1824             # be named. CMake would require each .po file to be named with
1825             # the translation domain and thus each .po file would need its
1826             # own language-specific directory (like "po/fi/xz.po"). On top
1827             # of this, INSTALL_DESTINATION doesn't allow specifying COMPONENT
1828             # and thus the .mo files go into "Unspecified" component. So we
1829             # can use gettext_process_po_files to convert the .po files but
1830             # installation needs to be done with our own code.
1831             #
1832             # Also, the .gmo files will go to root of the build directory
1833             # instead of neatly into a subdirectory. This is hardcoded in
1834             # CMake's FindGettext.cmake.
1835             foreach(LANG IN LISTS LINGUAS)
1836                 gettext_process_po_files("${LANG}" ALL
1837                         PO_FILES "${CMAKE_CURRENT_SOURCE_DIR}/po/${LANG}.po")
1838             endforeach()
1840             set(GMO_DIR "${CMAKE_CURRENT_BINARY_DIR}")
1841         endif()
1843         foreach(LANG IN LISTS LINGUAS)
1844             install(
1845                 FILES "${GMO_DIR}/${LANG}.gmo"
1846                 DESTINATION "${CMAKE_INSTALL_LOCALEDIR}/${LANG}/LC_MESSAGES"
1847                 RENAME "${TRANSLATION_DOMAIN}.mo"
1848                 COMPONENT xz_Runtime)
1849         endforeach()
1850     endif()
1852     # This command must be before the symlink creation to keep things working
1853     # on Cygwin and MSYS2 in all cases.
1854     #
1855     #   - Cygwin can encode symlinks in multiple ways. This can be
1856     #     controlled via the environment variable "CYGWIN". If it contains
1857     #     "winsymlinks:nativestrict" then symlink creation will fail if
1858     #     the link target doesn't exist. This mode isn't the default though.
1859     #     See: https://cygwin.com/faq.html#faq.api.symlinks
1860     #
1861     #   - MSYS2 supports the same winsymlinks option in the environment
1862     #     variable "MSYS" (not "MSYS2). The default in MSYS2 is to make
1863     #     a copy of the file instead of any kind of symlink. Thus the link
1864     #     target must exist or the creation of the "symlink" (copy) will fail.
1865     #
1866     # Our installation order must be such that when a symbolic link is created
1867     # its target must already exists. There is no race condition for parallel
1868     # builds because the generated cmake_install.cmake executes serially.
1869     install(TARGETS xz
1870             RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}"
1871                     COMPONENT xz_Runtime)
1873     if(UNIX)
1874         option(CREATE_XZ_SYMLINKS "Create unxz and xzcat symlinks" ON)
1875         option(CREATE_LZMA_SYMLINKS "Create lzma, unlzma, and lzcat symlinks"
1876                ON)
1877         set(XZ_LINKS)
1879         if(CREATE_XZ_SYMLINKS)
1880             list(APPEND XZ_LINKS "unxz" "xzcat")
1881         endif()
1883         if(CREATE_LZMA_SYMLINKS)
1884             list(APPEND XZ_LINKS "lzma" "unlzma" "lzcat")
1885         endif()
1887         # On Cygwin, don't add the .exe suffix to the symlinks.
1888         #
1889         # FIXME? Does this make sense on MSYS & MSYS2 where "ln -s"
1890         # by default makes copies? Inside MSYS & MSYS2 it is possible
1891         # to execute files without the .exe suffix but not outside
1892         # (like in Command Prompt). Omitting the suffix matches
1893         # what configure.ac has done for many years though.
1894         my_install_symlinks(xz_Runtime "${CMAKE_INSTALL_BINDIR}"
1895                             "xz${CMAKE_EXECUTABLE_SUFFIX}" "" "${XZ_LINKS}")
1897         # Install the man pages and (optionally) their symlinks
1898         # and translations.
1899         my_install_man(xz_Documentation src/xz/xz.1 "${XZ_LINKS}")
1900     endif()
1901 endif()
1904 #############################################################################
1905 # Scripts
1906 #############################################################################
1908 if(UNIX)
1909     # NOTE: This isn't as sophisticated as in the Autotools build which
1910     # uses posix-shell.m4 but hopefully this doesn't need to be either.
1911     # CMake likely won't be used on as many (old) obscure systems as the
1912     # Autotools-based builds are.
1913     if(CMAKE_SYSTEM_NAME STREQUAL "SunOS" AND EXISTS "/usr/xpg4/bin/sh")
1914         set(POSIX_SHELL_DEFAULT "/usr/xpg4/bin/sh")
1915     else()
1916         set(POSIX_SHELL_DEFAULT "/bin/sh")
1917     endif()
1919     set(POSIX_SHELL "${POSIX_SHELL_DEFAULT}" CACHE STRING
1920         "Shell to use for scripts (xzgrep and others)")
1922     # Guess the extra path to add from POSIX_SHELL. Autotools-based build
1923     # has a separate option --enable-path-for-scripts=PREFIX but this is
1924     # enough for Solaris.
1925     set(enable_path_for_scripts)
1926     get_filename_component(POSIX_SHELL_DIR "${POSIX_SHELL}" DIRECTORY)
1928     if(NOT POSIX_SHELL_DIR STREQUAL "/bin" AND
1929             NOT POSIX_SHELL_DIR STREQUAL "/usr/bin")
1930         set(enable_path_for_scripts "PATH=${POSIX_SHELL_DIR}:\$PATH")
1931     endif()
1933     set(XZDIFF_LINKS xzcmp)
1934     set(XZGREP_LINKS xzegrep xzfgrep)
1935     set(XZMORE_LINKS)
1936     set(XZLESS_LINKS)
1938     if(CREATE_LZMA_SYMLINKS)
1939         list(APPEND XZDIFF_LINKS lzdiff lzcmp)
1940         list(APPEND XZGREP_LINKS lzgrep lzegrep lzfgrep)
1941         list(APPEND XZMORE_LINKS lzmore)
1942         list(APPEND XZLESS_LINKS lzless)
1943     endif()
1945     set(xz "xz")
1947     foreach(S xzdiff xzgrep xzmore xzless)
1948         configure_file("src/scripts/${S}.in" "${S}"
1949                @ONLY
1950                NEWLINE_STYLE LF)
1952         install(PROGRAMS "${CMAKE_CURRENT_BINARY_DIR}/${S}"
1953                 DESTINATION "${CMAKE_INSTALL_BINDIR}"
1954                 COMPONENT scripts_Runtime)
1955     endforeach()
1957     # file(CHMOD ...) would need CMake 3.19 so use execute_process instead.
1958     # Using +x is fine even if umask was 077. If execute bit is set at all
1959     # then "make install" will set it for group and other access bits too.
1960     execute_process(COMMAND chmod +x xzdiff xzgrep xzmore xzless
1961                     WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}")
1963     unset(xz)
1964     unset(POSIX_SHELL)
1965     unset(enable_path_for_scripts)
1967     my_install_symlinks(scripts_Runtime "${CMAKE_INSTALL_BINDIR}" xzdiff ""
1968                         "${XZDIFF_LINKS}")
1970     my_install_symlinks(scripts_Runtime "${CMAKE_INSTALL_BINDIR}" xzgrep ""
1971                         "${XZGREP_LINKS}")
1973     my_install_symlinks(scripts_Runtime "${CMAKE_INSTALL_BINDIR}" xzmore ""
1974                         "${XZMORE_LINKS}")
1976     my_install_symlinks(scripts_Runtime "${CMAKE_INSTALL_BINDIR}" xzless ""
1977                         "${XZLESS_LINKS}")
1979     my_install_man(scripts_Documentation src/scripts/xzdiff.1 "${XZDIFF_LINKS}")
1980     my_install_man(scripts_Documentation src/scripts/xzgrep.1 "${XZGREP_LINKS}")
1981     my_install_man(scripts_Documentation src/scripts/xzmore.1 "${XZMORE_LINKS}")
1982     my_install_man(scripts_Documentation src/scripts/xzless.1 "${XZLESS_LINKS}")
1983 endif()
1986 #############################################################################
1987 # Documentation
1988 #############################################################################
1990 if(UNIX)
1991     option(ENABLE_DOXYGEN "Use Doxygen to generate liblzma API docs" OFF)
1993     if (ENABLE_DOXYGEN)
1994         file(MAKE_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/doc")
1996         add_custom_command(
1997             VERBATIM
1998             COMMAND "${CMAKE_CURRENT_SOURCE_DIR}/doxygen/update-doxygen"
1999             ARGS "api"
2000                  "${CMAKE_CURRENT_SOURCE_DIR}"
2001                  "${CMAKE_CURRENT_BINARY_DIR}/doc"
2002             OUTPUT doc/api/index.html
2003             DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/doxygen/update-doxygen"
2004                     "${CMAKE_CURRENT_SOURCE_DIR}/doxygen/Doxyfile"
2005                     ${LIBLZMA_API_HEADERS}
2006         )
2008         add_custom_target(
2009             liblzma-doc-api ALL
2010             DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/doc/api/index.html"
2011         )
2013         install(DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/doc/api"
2014                 DESTINATION "${CMAKE_INSTALL_DOCDIR}"
2015                 COMPONENT liblzma_Documentation)
2016     endif()
2017 endif()
2019 install(DIRECTORY doc/examples
2020         DESTINATION "${CMAKE_INSTALL_DOCDIR}"
2021         COMPONENT liblzma_Documentation)
2023 # GPLv2 applies to the scripts. If GNU getopt_long is used then
2024 # LGPLv2.1 applies to the command line tools but, using the
2025 # section 3 of LGPLv2.1, GNU getopt_long can be handled as GPLv2 too.
2026 # Thus GPLv2 should be enough here.
2027 install(FILES AUTHORS
2028               COPYING
2029               COPYING.0BSD
2030               COPYING.GPLv2
2031               NEWS
2032               README
2033               THANKS
2034               doc/faq.txt
2035               doc/history.txt
2036               doc/lzma-file-format.txt
2037               doc/xz-file-format.txt
2038         DESTINATION "${CMAKE_INSTALL_DOCDIR}"
2039         COMPONENT Documentation)
2042 #############################################################################
2043 # Tests
2044 #############################################################################
2046 # Tests are in a separate file so that it's possible to delete the whole
2047 # "tests" directory and still have a working build, just without the tests.
2048 include(tests/tests.cmake OPTIONAL)