Don't build base libraries and BIOS with -fPIC after all.

This commit is contained in:
whitequark 2015-07-29 12:09:05 +03:00
parent b7aff65ca9
commit a4e14f1058
3 changed files with 2 additions and 15 deletions

View File

@ -146,7 +146,7 @@ class SoC(Module):
if size is not None:
self.add_memory_region(name, address, size)
def register_rom(self, interface, rom_size=0x10000):
def register_rom(self, interface, rom_size=0xa000):
self.add_wb_slave(mem_decoder(self.mem_map["rom"]), interface)
self.add_memory_region("rom", self.cpu_reset_address, rom_size)

View File

@ -9,7 +9,7 @@ def get_cpu_mak(cpu_type):
clang = ""
elif cpu_type == "or1k":
triple = "or1k-linux"
cpuflags = "-fPIC -mhard-mul -mhard-div"
cpuflags = "-mhard-mul -mhard-div"
clang = "1"
else:
raise ValueError("Unsupported CPU type: "+cpu_type)

View File

@ -1,8 +1,6 @@
INCLUDE generated/output_format.ld
ENTRY(_start)
__DYNAMIC = 0;
INCLUDE generated/regions.ld
SECTIONS
@ -14,17 +12,6 @@ SECTIONS
_etext = .;
} > rom
.got :
{
_GLOBAL_OFFSET_TABLE_ = .;
*(.got)
} > rom
.got.plt :
{
*(.got.plt)
} > rom
.rodata :
{
. = ALIGN(4);