2013-06-12 17:51:36 +04:00
|
|
|
# -*- makefile -*-
|
2013-01-31 01:25:25 +04:00
|
|
|
# Copyright (c) 1999-2007 Hewlett-Packard Development Company, L.P.
|
|
|
|
# Contributed by David Mosberger <davidm@hpl.hp.com>
|
|
|
|
# Contributed by Stephane Eranian <eranian@hpl.hp.com>
|
|
|
|
#
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
#
|
|
|
|
# * Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# * Redistributions in binary form must reproduce the above
|
|
|
|
# copyright notice, this list of conditions and the following
|
|
|
|
# disclaimer in the documentation and/or other materials
|
|
|
|
# provided with the distribution.
|
|
|
|
# * Neither the name of Hewlett-Packard Co. nor the names of its
|
|
|
|
# contributors may be used to endorse or promote products derived
|
|
|
|
# from this software without specific prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
|
|
|
# CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
|
|
|
# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
|
|
|
|
# BE LIABLE FOR ANYDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
|
|
|
|
# OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
|
|
# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
|
|
|
|
# TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
|
|
|
|
# THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
# SUCH DAMAGE.
|
2013-06-12 17:51:36 +04:00
|
|
|
#
|
|
|
|
|
2024-03-18 16:30:16 +03:00
|
|
|
TOPDIR ?= $(shell if [ "$$PWD" != "" ]; then echo $$PWD; else pwd; fi)
|
2013-06-12 17:51:36 +04:00
|
|
|
|
|
|
|
#
|
|
|
|
# Variables below overridable from command-line:
|
|
|
|
# make VARNAME=value ...
|
|
|
|
#
|
2013-01-31 01:25:25 +04:00
|
|
|
|
|
|
|
#
|
|
|
|
# Where to install the package. GNU-EFI will create and access
|
|
|
|
# lib and include under the root
|
|
|
|
#
|
2019-10-25 22:39:35 +03:00
|
|
|
DESTDIR ?= /
|
|
|
|
ifeq ($(origin INSTALLROOT),undefined)
|
|
|
|
INSTALLROOT = $(DESTDIR)
|
|
|
|
endif
|
|
|
|
|
|
|
|
empty :=
|
|
|
|
space := $(empty) $(empty)
|
|
|
|
stripped = $(subst $(space),/,$(strip $(subst /,$(space),$(1))))
|
|
|
|
unstripped = $(subst $(space),/,$(subst /,$(space),$(1)))
|
|
|
|
is_absolute = $(subst $(call stripped,$(1)),$(empty),$(call unstripped,$(1)))
|
|
|
|
|
|
|
|
override INSTALLROOT:=$(if $(call is_absolute,$(INSTALLROOT)),,$(TOPDIR)/)$(INSTALLROOT)
|
|
|
|
|
2013-06-12 17:51:36 +04:00
|
|
|
PREFIX := /usr/local
|
2023-04-06 23:36:07 +03:00
|
|
|
EXEC_PREFIX := $(PREFIX)
|
2024-05-20 19:20:09 +03:00
|
|
|
LIBDIR := $(EXEC_PREFIX)/lib
|
2023-04-06 23:36:07 +03:00
|
|
|
INCLUDEDIR := $(PREFIX)/include
|
2024-05-20 19:20:09 +03:00
|
|
|
INSTALL := install
|
2013-01-31 01:25:25 +04:00
|
|
|
|
2013-06-12 17:51:36 +04:00
|
|
|
# Compilation tools
|
2014-08-08 23:26:38 +04:00
|
|
|
HOSTCC := $(prefix)gcc
|
|
|
|
CC := $(prefix)$(CROSS_COMPILE)gcc
|
|
|
|
AS := $(prefix)$(CROSS_COMPILE)as
|
|
|
|
LD := $(prefix)$(CROSS_COMPILE)ld
|
|
|
|
AR := $(prefix)$(CROSS_COMPILE)ar
|
|
|
|
RANLIB := $(prefix)$(CROSS_COMPILE)ranlib
|
|
|
|
OBJCOPY := $(prefix)$(CROSS_COMPILE)objcopy
|
2013-06-12 17:51:36 +04:00
|
|
|
|
2024-05-20 19:20:09 +03:00
|
|
|
# Set verbose or nonverbose output similarly to automake's silent rules.
|
|
|
|
# Default is nonverbose, but, just like with automake, it can be disabled
|
|
|
|
# with: 'make V=1'
|
|
|
|
ifneq ($(V),1)
|
|
|
|
HIDE=@
|
|
|
|
ECHO=echo
|
|
|
|
else
|
|
|
|
HIDE=
|
|
|
|
ECHO=true
|
|
|
|
endif
|
2013-06-12 17:51:36 +04:00
|
|
|
|
2014-01-09 01:12:59 +04:00
|
|
|
# Host/target identification
|
2024-07-24 19:28:39 +03:00
|
|
|
OS := $(shell uname -s)
|
|
|
|
USING_APPLE ?= $(shell echo $(OS) | grep -q 'Darwin' && echo 1 || echo 0)
|
|
|
|
USING_FREEBSD ?= $(shell echo $(OS) | grep -q 'FreeBSD' && echo 1 || echo 0)
|
|
|
|
|
|
|
|
# FreeBSD uses clang with no gcc symlink
|
|
|
|
ifeq ($(USING_FREEBSD),1)
|
|
|
|
override HOSTCC := $(prefix)clang
|
|
|
|
endif
|
|
|
|
|
|
|
|
HOSTARCH ?= $(shell $(HOSTCC) -dumpmachine | cut -f1 -d- | sed -e s,i[3456789]86,ia32, -e 's,armv[67].*,arm,' )
|
|
|
|
ARCH ?= $(shell $(HOSTCC) -dumpmachine | cut -f1 -d- | sed -e s,i[3456789]86,ia32, -e 's,armv[67].*,arm,' )
|
2014-11-06 22:41:40 +03:00
|
|
|
|
|
|
|
# Get ARCH from the compiler if cross compiling
|
|
|
|
ifneq ($(CROSS_COMPILE),)
|
2019-11-05 08:09:12 +03:00
|
|
|
override ARCH := $(shell $(CC) -dumpmachine | cut -f1 -d-| sed -e s,i[3456789]86,ia32, -e 's,armv[67].*,arm,' )
|
2014-11-06 22:41:40 +03:00
|
|
|
endif
|
2014-01-09 01:12:59 +04:00
|
|
|
|
|
|
|
# FreeBSD (and possibly others) reports amd64 instead of x86_64
|
|
|
|
ifeq ($(ARCH),amd64)
|
|
|
|
override ARCH := x86_64
|
|
|
|
endif
|
|
|
|
|
2024-05-09 14:33:50 +03:00
|
|
|
# Allow UEFI shorthands to be specified for the arch
|
|
|
|
ifeq ($(ARCH),x64)
|
|
|
|
override ARCH := x86_64
|
|
|
|
endif
|
|
|
|
ifeq ($(ARCH),mips64)
|
|
|
|
override ARCH := mips64el
|
|
|
|
endif
|
|
|
|
|
2024-07-24 19:28:39 +03:00
|
|
|
GCCVERSION := $(shell $(CC) -dumpversion | sed -e 's/-win32/.0/' | cut -f1 -d.)
|
|
|
|
GCCMINOR := $(shell $(CC) -dumpversion | sed -e 's/-win32/.0/' | cut -f2 -d.)
|
|
|
|
USING_CLANG := $(shell $(CC) -v 2>&1 | grep -q 'clang version' && echo clang || echo 0)
|
|
|
|
NO_GLIBC ?= 0
|
2023-06-10 21:14:41 +03:00
|
|
|
|
|
|
|
# Rely on GCC MS ABI support?
|
|
|
|
GCCNEWENOUGH := $(shell ( [ $(GCCVERSION) -gt "4" ] \
|
|
|
|
|| ( [ $(GCCVERSION) -eq "4" ] \
|
|
|
|
&& [ $(GCCMINOR) -ge "7" ] ) ) \
|
|
|
|
&& echo 1)
|
|
|
|
|
2024-06-24 18:12:10 +03:00
|
|
|
PART_ONE = $(shell echo "$(1)" | cut -f1 -d.)
|
|
|
|
PART_TWO = $(shell echo "$(1)" | cut -f2 -d.)
|
|
|
|
|
|
|
|
IS_NEW_ENOUGH = $(shell ( [ $(call PART_ONE,$(1)) -gt "$(2)" ] \
|
|
|
|
|| ( [ $(call PART_ONE,$(1)) -eq "$(2)" ] \
|
|
|
|
&& [ $(call PART_TWO,$(1)) -ge "$(3)" ] ) ) \
|
|
|
|
&& echo 1)
|
|
|
|
|
2015-02-19 19:22:45 +03:00
|
|
|
#
|
|
|
|
# Where to build the package
|
|
|
|
#
|
|
|
|
OBJDIR := $(TOPDIR)/$(ARCH)
|
|
|
|
|
2013-06-12 17:51:36 +04:00
|
|
|
#
|
|
|
|
# Variables below derived from variables above
|
|
|
|
#
|
|
|
|
|
|
|
|
# Arch-specific compilation flags
|
|
|
|
CPPFLAGS += -DCONFIG_$(ARCH)
|
2013-01-31 01:25:25 +04:00
|
|
|
|
2018-03-13 22:20:32 +03:00
|
|
|
CFLAGS += -Wno-error=pragmas
|
|
|
|
|
2013-01-31 01:25:25 +04:00
|
|
|
ifeq ($(ARCH),ia64)
|
|
|
|
CFLAGS += -mfixed-range=f32-f127
|
|
|
|
endif
|
|
|
|
|
2013-06-12 17:51:36 +04:00
|
|
|
ifeq ($(ARCH),ia32)
|
2013-06-12 18:38:10 +04:00
|
|
|
CFLAGS += -mno-mmx -mno-sse
|
2013-06-12 17:51:36 +04:00
|
|
|
ifeq ($(HOSTARCH),x86_64)
|
2013-01-31 01:25:25 +04:00
|
|
|
ARCH3264 = -m32
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2023-06-10 21:14:41 +03:00
|
|
|
# Set ISO C mode
|
|
|
|
CPPFLAGS += -std=c11
|
|
|
|
|
2013-06-12 17:51:36 +04:00
|
|
|
ifeq ($(ARCH),x86_64)
|
2014-08-08 23:25:03 +04:00
|
|
|
ifeq ($(GCCNEWENOUGH),1)
|
2023-06-10 21:14:41 +03:00
|
|
|
CPPFLAGS += -DGNU_EFI_USE_MS_ABI
|
|
|
|
ifneq ($(USING_CLANG),clang)
|
|
|
|
CPPFLAGS += -maccumulate-outgoing-args
|
|
|
|
endif
|
2014-08-08 23:25:03 +04:00
|
|
|
endif
|
|
|
|
|
2016-06-17 17:07:25 +03:00
|
|
|
CFLAGS += -mno-red-zone
|
2013-06-12 17:51:36 +04:00
|
|
|
ifeq ($(HOSTARCH),ia32)
|
2013-01-31 01:25:25 +04:00
|
|
|
ARCH3264 = -m64
|
|
|
|
endif
|
|
|
|
endif
|
2013-06-12 17:51:36 +04:00
|
|
|
|
2017-07-13 15:43:16 +03:00
|
|
|
ifneq (,$(filter $(ARCH),ia32 x86_64))
|
|
|
|
# Disable AVX, if the compiler supports that.
|
|
|
|
CC_CAN_DISABLE_AVX=$(shell $(CC) -Werror -c -o /dev/null -xc -mno-avx - </dev/null >/dev/null 2>&1 && echo 1)
|
|
|
|
ifeq ($(CC_CAN_DISABLE_AVX), 1)
|
|
|
|
CFLAGS += -mno-avx
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2017-01-08 15:04:52 +03:00
|
|
|
ifeq ($(ARCH),mips64el)
|
|
|
|
CFLAGS += -march=mips64r2
|
|
|
|
ARCH3264 = -mabi=64
|
|
|
|
endif
|
|
|
|
|
2014-08-08 23:32:26 +04:00
|
|
|
#
|
|
|
|
# Set HAVE_EFI_OBJCOPY if objcopy understands --target efi-[app|bsdrv|rtdrv],
|
|
|
|
# otherwise we need to compose the PE/COFF header using the assembler
|
|
|
|
#
|
2024-06-24 18:12:10 +03:00
|
|
|
|
|
|
|
OBJCOPY_VERSION := $(shell $(OBJCOPY) --version | head -n 1 | awk '{print $$(NF)}')
|
|
|
|
|
2014-08-19 20:07:00 +04:00
|
|
|
ifneq ($(ARCH),arm)
|
2017-01-08 15:04:52 +03:00
|
|
|
ifneq ($(ARCH),mips64el)
|
2014-08-08 23:32:26 +04:00
|
|
|
export HAVE_EFI_OBJCOPY=y
|
|
|
|
endif
|
2014-08-19 20:07:00 +04:00
|
|
|
endif
|
2024-06-11 16:13:31 +03:00
|
|
|
|
|
|
|
ifeq ($(ARCH),riscv64)
|
2024-06-24 18:12:10 +03:00
|
|
|
ifneq ($(call IS_NEW_ENOUGH,$(OBJCOPY_VERSION),2,42),1)
|
2024-06-11 16:13:31 +03:00
|
|
|
export SYSTEM_HAS_EFI_OBJCOPY ?= 0
|
|
|
|
endif
|
2024-06-24 18:12:10 +03:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(ARCH),aarch64)
|
|
|
|
ifneq ($(call IS_NEW_ENOUGH,$(OBJCOPY_VERSION),2,38),1)
|
|
|
|
export SYSTEM_HAS_EFI_OBJCOPY ?= 0
|
|
|
|
endif
|
|
|
|
endif
|
2024-06-11 16:13:31 +03:00
|
|
|
|
2024-07-16 12:52:21 +03:00
|
|
|
ifeq ($(ARCH),ia32)
|
|
|
|
ifeq ($(USING_APPLE),1)
|
|
|
|
export SYSTEM_HAS_EFI_OBJCOPY ?= 0
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2024-06-11 16:13:31 +03:00
|
|
|
ifeq ($(HAVE_EFI_OBJCOPY),y)
|
|
|
|
export SYSTEM_HAS_EFI_OBJCOPY ?= 1
|
|
|
|
else
|
|
|
|
export SYSTEM_HAS_EFI_OBJCOPY ?= 0
|
2017-01-08 15:04:52 +03:00
|
|
|
endif
|
2014-08-19 20:07:00 +04:00
|
|
|
|
2024-06-11 16:13:31 +03:00
|
|
|
|
2024-07-14 19:35:36 +03:00
|
|
|
ifeq ($(USING_APPLE),1)
|
2024-07-22 15:11:19 +03:00
|
|
|
CFLAGS += -D__GNU_EFI_NO_GLIBC
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(NO_GLIBC),1)
|
|
|
|
CFLAGS += -D__GNU_EFI_NO_GLIBC
|
2024-07-14 19:35:36 +03:00
|
|
|
endif
|
2024-06-11 16:13:31 +03:00
|
|
|
|
2014-08-19 20:07:00 +04:00
|
|
|
ifeq ($(ARCH),arm)
|
|
|
|
CFLAGS += -marm
|
|
|
|
endif
|
2014-08-08 23:32:26 +04:00
|
|
|
|
2023-05-18 14:49:32 +03:00
|
|
|
ifneq (,$(filter $(ARCH),aarch64 arm loongarch64))
|
2023-02-07 19:25:58 +03:00
|
|
|
LDFLAGS += -z common-page-size=4096
|
|
|
|
LDFLAGS += -z max-page-size=4096
|
|
|
|
endif
|
|
|
|
|
2013-06-12 17:51:36 +04:00
|
|
|
# Generic compilation flags
|
|
|
|
INCDIR += -I$(SRCDIR) -I$(TOPDIR)/inc -I$(TOPDIR)/inc/$(ARCH) \
|
|
|
|
-I$(TOPDIR)/inc/protocol
|
2014-11-24 22:33:09 +03:00
|
|
|
|
2019-11-19 21:23:14 +03:00
|
|
|
# Only enable -fPIE for non MinGW compilers (unneeded on MinGW)
|
2016-03-29 17:16:21 +03:00
|
|
|
GCCMACHINE := $(shell $(CC) -dumpmachine)
|
2024-05-16 19:42:09 +03:00
|
|
|
IS_MINGW32 := $(findstring mingw32, $(GCCMACHINE))
|
|
|
|
ifeq ($(IS_MINGW32),)
|
2019-11-19 21:23:14 +03:00
|
|
|
CFLAGS += -fPIE
|
2016-03-29 17:16:21 +03:00
|
|
|
endif
|
|
|
|
|
2024-07-24 19:28:39 +03:00
|
|
|
ifeq ($(USING_FREEBSD),1)
|
2016-03-29 17:16:21 +03:00
|
|
|
CFLAGS += $(ARCH3264) -g -O2 -Wall -Wextra -Werror \
|
2024-05-29 18:26:52 +03:00
|
|
|
-fno-strict-aliasing \
|
2014-11-24 22:33:09 +03:00
|
|
|
-ffreestanding -fno-stack-protector
|
|
|
|
else
|
2020-01-21 23:05:19 +03:00
|
|
|
CFLAGS += $(ARCH3264) -g -O2 -Wall -Wextra -Wno-pointer-sign -Werror \
|
2024-05-29 18:26:52 +03:00
|
|
|
-fno-strict-aliasing \
|
2024-05-18 17:21:33 +03:00
|
|
|
-ffreestanding -fno-stack-protector -fno-stack-check \
|
2024-05-31 19:07:33 +03:00
|
|
|
$(if $(findstring 0,$(USING_CLANG)),-Wno-error=maybe-uninitialized,) \
|
|
|
|
$(if $(findstring 0,$(USING_CLANG)),-fno-merge-all-constants,)
|
2014-11-24 22:33:09 +03:00
|
|
|
endif
|
|
|
|
|
2024-06-24 22:01:44 +03:00
|
|
|
# Force DWARF 4 on LLVM
|
|
|
|
# Otherwise readelf becomes very unhappy
|
|
|
|
ifeq ($(USING_CLANG),clang)
|
|
|
|
CFLAGS += -gdwarf-4
|
|
|
|
endif
|
|
|
|
|
2024-07-16 12:52:21 +03:00
|
|
|
# Force hard float (for library mismatch)
|
|
|
|
ifeq ($(ARCH),arm)
|
|
|
|
ifeq ($(USING_APPLE),1)
|
|
|
|
CFLAGS += -mfloat-abi=hard -mfpu=vfpv2
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2024-05-20 19:20:09 +03:00
|
|
|
ifeq ($(V),1)
|
Call ar in deterministic mode.
We need the x86_64 and i686 builds of .a's to be the same, and that
means we need to not have timestamps. Also force the timestamps on disk
just in case that doesn't work, because RHEL's ar /silently ignores -D/.
v2: use "ar rvD" not "ar rv -D".
It's a wonder anybody ever gets these command line options right, if
"ar rv -D libfoo.a foo.o" doesn't use deterministic mode (or
complain), but "ar rvD libfoo.a foo.o" does.
v3: Add a bunch of junk to try to set timestamps to 0 manually
For some reason I'm still getting timestamps in the .a even though ar seems to
be invoked correctly. When I do "mock -r rhel-7-build --shell" and run make
manually, they're fine. Very strange.
v4: go back to v2, the problem isn't in the make process.
"ar rDv" works just fine, but /usr/lib/rpm/redhat/brp-strip-static-archive is
calling "%{__strip} -g $for_each.a", and it's rewriting our binary from
ts/uid/gid of 0/0/0 to $epoch/$UID/$GID. Awesomely /usr/bin/strip it seems to
have 3 modes of operation:
-U: the default, which adds $epoch/$UID/$GID to your binary archive
instead of just removing stuff. Clearly the Principle of Least
Surprise is strong here.
-p: preserve the timestamp from the original .a, but add UID and GID,
because this is 1980 and people use ar(1) for archiving stuff they
might want that out of.
-D: Condescend at you in a command line error and explain that -D both
is and is not a valid option:
/usr/bin/strip: invalid option -- 'D'
Usage: /usr/bin/strip <option(s)> in-file(s)
Removes symbols and sections from files
The options are:
...
-D --enable-deterministic-archives
Produce deterministic output when stripping archives
So I agree that it's invalid, but I think we may be pronouncing that
second vowel differently. They say in-VAL-id, I say IN-vuh-lid.
Nobody should ever have to run "strace -ttt -v -f -o make.strace make all",
just to discover the problem isn't even in there.
Related: rhbz#1310782
Signed-off-by: Peter Jones <pjones@redhat.com>
Signed-off-by: Nigel Croxon <ncroxon@redhat.com>
2018-03-13 22:20:34 +03:00
|
|
|
ARFLAGS := rDv
|
2024-05-20 19:20:09 +03:00
|
|
|
else
|
|
|
|
ARFLAGS := rD
|
|
|
|
endif
|
2013-06-12 17:51:36 +04:00
|
|
|
ASFLAGS += $(ARCH3264)
|
2024-05-20 19:20:09 +03:00
|
|
|
LDFLAGS += -nostdlib
|
2024-05-16 19:42:09 +03:00
|
|
|
ifeq ($(IS_MINGW32),)
|
2024-05-18 17:21:33 +03:00
|
|
|
LDFLAGS += --warn-common --no-undefined --fatal-warnings \
|
2024-07-16 12:52:21 +03:00
|
|
|
--build-id=sha1
|
2024-07-14 20:38:42 +03:00
|
|
|
ifeq ($(USING_APPLE),0)
|
2024-07-16 12:52:21 +03:00
|
|
|
LDFLAGS += -z norelro -z nocombreloc
|
2024-07-14 20:38:42 +03:00
|
|
|
endif
|
2024-05-18 17:21:33 +03:00
|
|
|
else
|
|
|
|
LDFLAGS += -Wl,--warn-common -Wl,--no-undefined -Wl,--fatal-warnings \
|
|
|
|
-Wl,--build-id=sha1
|
2024-05-16 19:42:09 +03:00
|
|
|
endif
|
2020-01-15 21:10:11 +03:00
|
|
|
|
|
|
|
ifneq ($(ARCH),arm)
|
|
|
|
export LIBGCC=$(shell $(CC) $(CFLAGS) $(ARCH3264) -print-libgcc-file-name)
|
|
|
|
endif
|