90e6999a07
- Update to the stuff in master to fix the issue at: https://bodhi.fedoraproject.org/updates/FEDORA-2020-050993b283#comment-1208958 - Update to 3.0.11 (via patches generated from git) - Plus newer upstream fixes (also via patches generated from git) - Fix shell exit failures in make - Fix .reloc section generation - Fix CHAR8 definition - Fix "make DESTDIR=..." - Change the installed .a/.o layout - Provide makefiles for consumers to use. - Make the -devel noarch since it's just headers. - Add a bunch of compatibility symlinks for our older packages. These will go away once we've migrated everything using them in fedora to use the newer make system... Signed-off-by: Peter Jones <pjones@redhat.com>
90 lines
2.4 KiB
Diff
90 lines
2.4 KiB
Diff
From ba53984ceeba5309c2769b0cfb34328fe10ee6ca Mon Sep 17 00:00:00 2001
|
|
From: Rick Mark <rickmark@outlook.com>
|
|
Date: Fri, 27 Oct 2017 14:05:39 -0700
|
|
Subject: [PATCH 19/46] Support for building on macOS systems
|
|
|
|
---
|
|
Make.defaults | 12 ++++++++++--
|
|
lib/x86_64/setjmp.S | 15 +++++++++++----
|
|
2 files changed, 21 insertions(+), 6 deletions(-)
|
|
|
|
diff --git a/Make.defaults b/Make.defaults
|
|
index 5695b2ac1ab..5d34ff47157 100755
|
|
--- a/Make.defaults
|
|
+++ b/Make.defaults
|
|
@@ -65,7 +65,7 @@ OS := $(shell uname -s)
|
|
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,' )
|
|
|
|
-# Get ARCH from the compiler if cross compiling
|
|
+# Get ARCH from the compiler if cross compiling
|
|
ifneq ($(CROSS_COMPILE),)
|
|
override ARCH := $(shell $(CC) -dumpmachine | cut -f1 -d-| sed -e s,i[3456789]86,ia32, -e 's,armv[67].*,arm,' )
|
|
endif
|
|
@@ -165,7 +165,10 @@ ifneq (mingw32,$(findstring mingw32, $(GCCMACHINE)))
|
|
CFLAGS += -fpic
|
|
endif
|
|
|
|
-ifeq (FreeBSD, $(findstring FreeBSD, $(OS)))
|
|
+IS_FREEBSD = $(findstring FreeBSD, $(OS))
|
|
+IS_DARWIN = $(findstring Darwin, $(OS))
|
|
+
|
|
+ifneq "$(or $(IS_FREEBSD), $(IS_DARWIN))" ""
|
|
CFLAGS += $(ARCH3264) -g -O2 -Wall -Wextra -Werror \
|
|
-fshort-wchar -fno-strict-aliasing \
|
|
-ffreestanding -fno-stack-protector
|
|
@@ -177,7 +180,12 @@ CFLAGS += $(ARCH3264) -g -O2 -Wall -Wextra -Werror \
|
|
$(if $(findstring gcc,$(CC)),-fno-merge-all-constants,)
|
|
endif
|
|
|
|
+ifeq "$(IS_DARWIN)" ""
|
|
+ARFLAGS += -U
|
|
+else
|
|
ARFLAGS := rDv
|
|
+endif
|
|
+
|
|
ASFLAGS += $(ARCH3264)
|
|
LDFLAGS += -nostdlib --warn-common --no-undefined --fatal-warnings \
|
|
--build-id=sha1
|
|
diff --git a/lib/x86_64/setjmp.S b/lib/x86_64/setjmp.S
|
|
index e870aef703a..e3e51959719 100644
|
|
--- a/lib/x86_64/setjmp.S
|
|
+++ b/lib/x86_64/setjmp.S
|
|
@@ -1,10 +1,14 @@
|
|
.text
|
|
.globl setjmp
|
|
-#ifndef __MINGW32__
|
|
+
|
|
+#ifndef __APPLE__
|
|
+# ifndef __MINGW32__
|
|
.type setjmp, @function
|
|
-#else
|
|
+# else
|
|
.def setjmp; .scl 2; .type 32; .endef
|
|
+# endif
|
|
#endif
|
|
+
|
|
setjmp:
|
|
pop %rsi
|
|
movq %rbx,0x00(%rdi)
|
|
@@ -20,11 +24,14 @@ setjmp:
|
|
ret
|
|
|
|
.globl longjmp
|
|
-#ifndef __MINGW32__
|
|
+#ifndef __APPLE__
|
|
+# ifndef __MINGW32__
|
|
.type longjmp, @function
|
|
-#else
|
|
+# else
|
|
.def longjmp; .scl 2; .type 32; .endef
|
|
+# endif
|
|
#endif
|
|
+
|
|
longjmp:
|
|
movl %esi, %eax
|
|
movq 0x00(%rdi), %rbx
|
|
--
|
|
2.24.1
|
|
|