forked from lix-project/lix
Alyssa Ross
4f80464645
Previously, the build system used uname(1) output when it wanted to check the operating system it was being built for, which meant that it didn't take into-account cross-compilation when the build and host operating systems were different. To fix this, instead of consulting uname output, we consult the host triple, specifically the third "kernel" part. For "kernel"s with stable ABIs, like Linux or Cygwin, we can use a simple ifeq to test whether we're compiling for that system, but for other platforms, like Darwin, FreeBSD, or Solaris, we have to use a more complicated check to take into account the version numbers at the end of the "kernel"s. I couldn't find a way to just strip these version numbers in GNU Make without shelling out, which would be even more ugly IMO. Because these checks differ between kernels, and the patsubst ones are quite fiddly, I've added variables for each host OS we might want to check to make them easier to reuse.
45 lines
1.1 KiB
Makefile
45 lines
1.1 KiB
Makefile
HOST_OS = @host_os@
|
|
AR = @AR@
|
|
BDW_GC_LIBS = @BDW_GC_LIBS@
|
|
BOOST_LDFLAGS = @BOOST_LDFLAGS@
|
|
BUILD_SHARED_LIBS = @BUILD_SHARED_LIBS@
|
|
CC = @CC@
|
|
CFLAGS = @CFLAGS@
|
|
CXX = @CXX@
|
|
CXXFLAGS = @CXXFLAGS@
|
|
EDITLINE_LIBS = @EDITLINE_LIBS@
|
|
ENABLE_S3 = @ENABLE_S3@
|
|
GTEST_LIBS = @GTEST_LIBS@
|
|
HAVE_LIBCPUID = @HAVE_LIBCPUID@
|
|
HAVE_SECCOMP = @HAVE_SECCOMP@
|
|
LDFLAGS = @LDFLAGS@
|
|
LIBARCHIVE_LIBS = @LIBARCHIVE_LIBS@
|
|
LIBBROTLI_LIBS = @LIBBROTLI_LIBS@
|
|
LIBCURL_LIBS = @LIBCURL_LIBS@
|
|
OPENSSL_LIBS = @OPENSSL_LIBS@
|
|
LIBSECCOMP_LIBS = @LIBSECCOMP_LIBS@
|
|
PACKAGE_NAME = @PACKAGE_NAME@
|
|
PACKAGE_VERSION = @PACKAGE_VERSION@
|
|
SHELL = @bash@
|
|
SODIUM_LIBS = @SODIUM_LIBS@
|
|
SQLITE3_LIBS = @SQLITE3_LIBS@
|
|
bash = @bash@
|
|
bindir = @bindir@
|
|
datadir = @datadir@
|
|
datarootdir = @datarootdir@
|
|
doc_generate = @doc_generate@
|
|
docdir = @docdir@
|
|
exec_prefix = @exec_prefix@
|
|
includedir = @includedir@
|
|
libdir = @libdir@
|
|
libexecdir = @libexecdir@
|
|
localstatedir = @localstatedir@
|
|
lsof = @lsof@
|
|
mandir = @mandir@
|
|
pkglibdir = $(libdir)/$(PACKAGE_NAME)
|
|
prefix = @prefix@
|
|
sandbox_shell = @sandbox_shell@
|
|
storedir = @storedir@
|
|
sysconfdir = @sysconfdir@
|
|
system = @system@
|