Displaying 3 results from an estimated 3 matches for "ad868ef".
Did you mean:
  7d868e6
  
2012 May 18
0
[PATCH 2/2] add KLIBCSHAREDFLAGS for IA64
...virtual addresses
mips64 is also missing KLIBCSHAREDFLAGS and needs treatment
Signed-off-by: Thorsten Glaser <tg at mirbsd.org>
---
 usr/klibc/arch/ia64/MCONFIG |   10 ++++++++++
 1 file changed, 10 insertions(+)
diff --git a/usr/klibc/arch/ia64/MCONFIG b/usr/klibc/arch/ia64/MCONFIG
index ad868ef..5b2eac6 100644
--- a/usr/klibc/arch/ia64/MCONFIG
+++ b/usr/klibc/arch/ia64/MCONFIG
@@ -9,3 +9,13 @@
 
 KLIBCOPTFLAGS += -Os
 KLIBCBITSIZE  = 64
+
+# Extra linkflags when building the shared version of the library
+# This address needs to be reachable using normal inter-module
+# calls, and work on...
2019 Jan 21
0
[PATCH] ia64: Fix shared build
...|   4 -
 usr/klibc/arch/ia64/klibc.ld  | 267 ++++++++++++++++++++++++++++++++++++++++++
 usr/klibc/arch/ia64/pipe.S    |   8 +-
 usr/klibc/arch/ia64/syscall.S |   6 +-
 5 files changed, 275 insertions(+), 13 deletions(-)
diff --git a/usr/klibc/arch/ia64/MCONFIG b/usr/klibc/arch/ia64/MCONFIG
index ad868ef..d12c9bf 100644
--- a/usr/klibc/arch/ia64/MCONFIG
+++ b/usr/klibc/arch/ia64/MCONFIG
@@ -7,5 +7,8 @@
 # accordingly.
 #
 
+KLIBCARCHREQFLAGS = -mno-pic
 KLIBCOPTFLAGS += -Os
 KLIBCBITSIZE  = 64
+
+KLIBCSHAREDFLAGS = -T $(src)/arch/$(KLIBCARCH)/klibc.ld
diff --git a/usr/klibc/arch/ia64/crt0.S b/usr/k...
2019 Jan 21
0
[klibc:master] ia64: Fix shared build
...|   4 -
 usr/klibc/arch/ia64/klibc.ld  | 267 ++++++++++++++++++++++++++++++++++++++++++
 usr/klibc/arch/ia64/pipe.S    |   8 +-
 usr/klibc/arch/ia64/syscall.S |   6 +-
 5 files changed, 275 insertions(+), 13 deletions(-)
diff --git a/usr/klibc/arch/ia64/MCONFIG b/usr/klibc/arch/ia64/MCONFIG
index ad868ef..d12c9bf 100644
--- a/usr/klibc/arch/ia64/MCONFIG
+++ b/usr/klibc/arch/ia64/MCONFIG
@@ -7,5 +7,8 @@
 # accordingly.
 #
 
+KLIBCARCHREQFLAGS = -mno-pic
 KLIBCOPTFLAGS += -Os
 KLIBCBITSIZE  = 64
+
+KLIBCSHAREDFLAGS = -T $(src)/arch/$(KLIBCARCH)/klibc.ld
diff --git a/usr/klibc/arch/ia64/crt0.S b/usr/k...