Changeset 99013b84 in mainline for uspace/srv/loader/Makefile
- Timestamp:
- 2018-05-15T18:54:09Z (7 years ago)
- Parents:
- fac0ac7
- git-author:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-05-02 19:48:42)
- git-committer:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-05-15 18:54:09)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/loader/Makefile
rfac0ac7 r99013b84 29 29 30 30 USPACE_PREFIX = ../.. 31 ROOT_PATH = $(USPACE_PREFIX)/.. 32 CONFIG_MAKEFILE = $(ROOT_PATH)/Makefile.config 31 33 32 EXTRA_LDFLAGS = -Wl,-Ttext-segment=0x70000000 34 include $(CONFIG_MAKEFILE) 35 36 ifeq ($(UARCH),ia64) 37 # IA64 has a peculiar linker script with a fixed data segment address. 38 # Because the loader is a separate nonrelocatable binary in the same 39 # address space as the application, we provide a modified copy of 40 # the default linker script to work around that. 41 EXTRA_LDFLAGS = -T elf64_ia64_loader.x 42 else 43 # On all other architectures, we can simply move the text segment. 44 EXTRA_LDFLAGS = -Wl,-Ttext-segment=0x70000000 45 endif 33 46 34 47 BINARY = loader
Note:
See TracChangeset
for help on using the changeset viewer.