Created
August 25, 2021 16:45
-
-
Save timotheecour/8e11b7617ac332ba59f44ed829f7dc72 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
libjpeg-turbo | |
cmake .. | |
``` | |
-- The C compiler identification is AppleClang 12.0.5.12050022 | |
-- Detecting C compiler ABI info | |
-- Detecting C compiler ABI info - done | |
-- Check for working C compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc - skipped | |
-- Detecting C compile features | |
-- Detecting C compile features - done | |
-- CMAKE_BUILD_TYPE = Release | |
-- VERSION = 2.1.1, BUILD = 20210825 | |
-- 64-bit build (x86_64) | |
-- CMAKE_INSTALL_PREFIX = /opt/libjpeg-turbo | |
-- CMAKE_INSTALL_BINDIR = bin (/opt/libjpeg-turbo/bin) | |
-- CMAKE_INSTALL_DATAROOTDIR = (/opt/libjpeg-turbo) | |
-- CMAKE_INSTALL_DOCDIR = doc (/opt/libjpeg-turbo/doc) | |
-- CMAKE_INSTALL_INCLUDEDIR = include (/opt/libjpeg-turbo/include) | |
-- CMAKE_INSTALL_LIBDIR = lib (/opt/libjpeg-turbo/lib) | |
-- CMAKE_INSTALL_MANDIR = man (/opt/libjpeg-turbo/man) | |
-- Shared libraries enabled (ENABLE_SHARED = 1) | |
-- Static libraries enabled (ENABLE_STATIC = 1) | |
-- 12-bit JPEG support disabled (WITH_12BIT = 0) | |
-- Arithmetic decoding support enabled (WITH_ARITH_DEC = 1) | |
-- Arithmetic encoding support enabled (WITH_ARITH_ENC = 1) | |
-- TurboJPEG API library enabled (WITH_TURBOJPEG = 1) | |
-- TurboJPEG Java wrapper disabled (WITH_JAVA = 0) | |
-- In-memory source/destination managers enabled (WITH_MEM_SRCDST = 1) | |
-- Emulating libjpeg API/ABI v6.2 (WITH_JPEG7 = 0, WITH_JPEG8 = 0) | |
-- libjpeg API shared library version = 62.3.0 | |
-- Compiler flags = -O3 -DNDEBUG | |
-- Linker flags = | |
-- Looking for sys/types.h | |
-- Looking for sys/types.h - found | |
-- Looking for stdint.h | |
-- Looking for stdint.h - found | |
-- Looking for stddef.h | |
-- Looking for stddef.h - found | |
-- Check size of size_t | |
-- Check size of size_t - done | |
-- Check size of unsigned long | |
-- Check size of unsigned long - done | |
-- Performing Test HAVE_BUILTIN_CTZL | |
-- Performing Test HAVE_BUILTIN_CTZL - Success | |
-- Looking for include file locale.h | |
-- Looking for include file locale.h - found | |
-- Looking for include file stdlib.h | |
-- Looking for include file stdlib.h - found | |
-- Looking for include file sys/types.h | |
-- Looking for include file sys/types.h - found | |
-- Looking for memset | |
-- Looking for memset - found | |
-- Looking for memcpy | |
-- Looking for memcpy - found | |
-- Check size of unsigned char | |
-- Check size of unsigned char - done | |
-- Check size of unsigned short | |
-- Check size of unsigned short - done | |
-- Performing Test INCOMPLETE_TYPES | |
-- Performing Test INCOMPLETE_TYPES - Success | |
-- Compiler supports pointers to undefined structures. | |
-- Performing Test RIGHT_SHIFT_IS_UNSIGNED | |
-- Performing Test RIGHT_SHIFT_IS_UNSIGNED - Failed | |
-- Performing Test INLINE_WORKS | |
-- Performing Test INLINE_WORKS - Success | |
-- INLINE = __inline__ __attribute__((always_inline)) (FORCE_INLINE = 1) | |
-- Performing Test HAVE_THREAD_LOCAL | |
-- Performing Test HAVE_THREAD_LOCAL - Success | |
-- THREAD_LOCAL = __thread | |
-- CMAKE_EXECUTABLE_SUFFIX = | |
-- Looking for a ASM_NASM compiler | |
-- Looking for a ASM_NASM compiler - /usr/local/bin/nasm | |
-- The ASM_NASM compiler identification is NASM | |
-- Found assembler: /usr/local/bin/nasm | |
-- CMAKE_ASM_NASM_COMPILER = /usr/local/bin/nasm | |
-- CMAKE_ASM_NASM_OBJECT_FORMAT = macho64 | |
-- CMAKE_ASM_NASM_FLAGS = -DMACHO -D__x86_64__ -DPIC | |
-- SIMD extensions: x86_64 (WITH_SIMD = 1) | |
-- FLOATTEST = sse | |
-- Configuring done | |
-- Generating done | |
-- Build files have been written to: /Users/timothee/git_clone/temp/libjpeg-turbo/build | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment