diff options
author | Magnus Lång <[email protected]> | 2016-05-10 17:22:25 +0200 |
---|---|---|
committer | Magnus Lång <[email protected]> | 2016-05-11 13:19:46 +0200 |
commit | 0f489445070cf65d96db7938f80ad118921c1f6a (patch) | |
tree | eb31f67e5d9506ab000c3fd547c8f18aa92fadc4 /lib/hipe/llvm/Makefile | |
parent | 3dc060d7b6e0f2ea55e6649b23a47d226874b9d4 (diff) | |
download | otp-0f489445070cf65d96db7938f80ad118921c1f6a.tar.gz otp-0f489445070cf65d96db7938f80ad118921c1f6a.tar.bz2 otp-0f489445070cf65d96db7938f80ad118921c1f6a.zip |
hipe: Extract some records into elf_format.hrl
This allows for much more robust interpretation of relocations, symbols
and sections in hipe_llvm_main, without the clunkiness of an abstract
interface between two internal modules that belong to the same subsystem
anyway.
Diffstat (limited to 'lib/hipe/llvm/Makefile')
-rw-r--r-- | lib/hipe/llvm/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/hipe/llvm/Makefile b/lib/hipe/llvm/Makefile index d2d39fb9e3..d172e37b02 100644 --- a/lib/hipe/llvm/Makefile +++ b/lib/hipe/llvm/Makefile @@ -108,3 +108,11 @@ release_spec: opt $(INSTALL_DATA) $(TARGET_FILES) $(RELSYSDIR)/ebin release_docs_spec: + +$(EBIN)/elf_format.beam: elf_format.hrl elf32_format.hrl elf64_format.hrl +$(EBIN)/hipe_llvm_main.beam: ../../kernel/src/hipe_ext_format.hrl \ + hipe_llvm_arch.hrl elf_format.hrl elf32_format.hrl elf64_format.hrl +$(EBIN)/hipe_llvm_merge.beam: ../../kernel/src/hipe_ext_format.hrl \ + hipe_llvm_arch.hrl ../rtl/hipe_literals.hrl ../main/hipe.hrl +$(EBIN)/hipe_rtl_to_llvm.beam: ../rtl/hipe_rtl.hrl ../rtl/hipe_literals.hrl \ + hipe_llvm_arch.hrl |