mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:38:14 +02:00
* riscv64-linux: generate PIC for all units as it is required for shared libraries
git-svn-id: trunk@48948 -
This commit is contained in:
parent
e047e7db91
commit
62ea31f255
2
Makefile
2
Makefile
@ -1692,7 +1692,7 @@ ifdef CREATESHARED
|
||||
override FPCOPT+=-Cg
|
||||
endif
|
||||
ifneq ($(findstring $(OS_TARGET),dragonfly freebsd openbsd netbsd linux solaris),)
|
||||
ifneq ($(findstring $(CPU_TARGET),x86_64 mips mipsel),)
|
||||
ifneq ($(findstring $(CPU_TARGET),x86_64 mips mipsel riscv64),)
|
||||
override FPCOPT+=-Cg
|
||||
endif
|
||||
endif
|
||||
|
@ -1177,7 +1177,7 @@ unit i_linux;
|
||||
system : system_riscv64_linux;
|
||||
name : 'Linux for RISC-V 64';
|
||||
shortname : 'Linux';
|
||||
flags : [tf_needs_symbol_size,tf_smartlink_sections,tf_needs_dwarf_cfi,
|
||||
flags : [tf_needs_symbol_size,tf_library_needs_pic,tf_smartlink_sections,tf_needs_dwarf_cfi,
|
||||
tf_needs_symbol_type,tf_files_case_sensitive,
|
||||
tf_requires_proper_alignment,tf_has_winlike_resources,
|
||||
tf_supports_hidden_symbols
|
||||
|
@ -1525,7 +1525,7 @@ ifdef CREATESHARED
|
||||
override FPCOPT+=-Cg
|
||||
endif
|
||||
ifneq ($(findstring $(OS_TARGET),dragonfly freebsd openbsd netbsd linux solaris),)
|
||||
ifneq ($(findstring $(CPU_TARGET),x86_64 mips mipsel),)
|
||||
ifneq ($(findstring $(CPU_TARGET),x86_64 mips mipsel riscv64),)
|
||||
override FPCOPT+=-Cg
|
||||
endif
|
||||
endif
|
||||
|
@ -3772,7 +3772,7 @@ ifdef CREATESHARED
|
||||
override FPCOPT+=-Cg
|
||||
endif
|
||||
ifneq ($(findstring $(OS_TARGET),dragonfly freebsd openbsd netbsd linux solaris),)
|
||||
ifneq ($(findstring $(CPU_TARGET),x86_64 mips mipsel),)
|
||||
ifneq ($(findstring $(CPU_TARGET),x86_64 mips mipsel riscv64),)
|
||||
override FPCOPT+=-Cg
|
||||
endif
|
||||
endif
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1517,7 +1517,7 @@ endif
|
||||
# create always pic'ed code on x86_64, mips and mipsel
|
||||
# on unix-like systems
|
||||
ifneq ($(findstring $(OS_TARGET),dragonfly freebsd openbsd netbsd linux solaris),)
|
||||
ifneq ($(findstring $(CPU_TARGET),x86_64 mips mipsel),)
|
||||
ifneq ($(findstring $(CPU_TARGET),x86_64 mips mipsel riscv64),)
|
||||
override FPCOPT+=-Cg
|
||||
endif
|
||||
endif
|
||||
|
Loading…
Reference in New Issue
Block a user