* riscv64-linux: generate PIC for all units as it is required for shared libraries

git-svn-id: trunk@48948 -
This commit is contained in:
florian 2021-03-13 16:33:31 +00:00
parent e047e7db91
commit 62ea31f255
6 changed files with 171 additions and 169 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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