From b792f9f50799c93fe5f6265783a4ba964f3f1b97 Mon Sep 17 00:00:00 2001 From: Maneesh Gupta Date: Mon, 23 Oct 2017 10:24:36 +0530 Subject: [PATCH] Make elfio headers private Change-Id: I3ba174bb46e84a75380207d93a0da6fe3703689e --- {include/hip/hcc_detail => src}/elfio/elf_types.hpp | 0 {include/hip/hcc_detail => src}/elfio/elfio.hpp | 0 {include/hip/hcc_detail => src}/elfio/elfio_dump.hpp | 0 {include/hip/hcc_detail => src}/elfio/elfio_dynamic.hpp | 0 {include/hip/hcc_detail => src}/elfio/elfio_header.hpp | 0 {include/hip/hcc_detail => src}/elfio/elfio_note.hpp | 0 {include/hip/hcc_detail => src}/elfio/elfio_relocation.hpp | 0 {include/hip/hcc_detail => src}/elfio/elfio_section.hpp | 0 {include/hip/hcc_detail => src}/elfio/elfio_segment.hpp | 0 {include/hip/hcc_detail => src}/elfio/elfio_strings.hpp | 0 {include/hip/hcc_detail => src}/elfio/elfio_symbols.hpp | 0 {include/hip/hcc_detail => src}/elfio/elfio_utils.hpp | 0 src/hip_module.cpp | 2 +- 13 files changed, 1 insertion(+), 1 deletion(-) rename {include/hip/hcc_detail => src}/elfio/elf_types.hpp (100%) rename {include/hip/hcc_detail => src}/elfio/elfio.hpp (100%) rename {include/hip/hcc_detail => src}/elfio/elfio_dump.hpp (100%) rename {include/hip/hcc_detail => src}/elfio/elfio_dynamic.hpp (100%) rename {include/hip/hcc_detail => src}/elfio/elfio_header.hpp (100%) rename {include/hip/hcc_detail => src}/elfio/elfio_note.hpp (100%) rename {include/hip/hcc_detail => src}/elfio/elfio_relocation.hpp (100%) rename {include/hip/hcc_detail => src}/elfio/elfio_section.hpp (100%) rename {include/hip/hcc_detail => src}/elfio/elfio_segment.hpp (100%) rename {include/hip/hcc_detail => src}/elfio/elfio_strings.hpp (100%) rename {include/hip/hcc_detail => src}/elfio/elfio_symbols.hpp (100%) rename {include/hip/hcc_detail => src}/elfio/elfio_utils.hpp (100%) diff --git a/include/hip/hcc_detail/elfio/elf_types.hpp b/src/elfio/elf_types.hpp similarity index 100% rename from include/hip/hcc_detail/elfio/elf_types.hpp rename to src/elfio/elf_types.hpp diff --git a/include/hip/hcc_detail/elfio/elfio.hpp b/src/elfio/elfio.hpp similarity index 100% rename from include/hip/hcc_detail/elfio/elfio.hpp rename to src/elfio/elfio.hpp diff --git a/include/hip/hcc_detail/elfio/elfio_dump.hpp b/src/elfio/elfio_dump.hpp similarity index 100% rename from include/hip/hcc_detail/elfio/elfio_dump.hpp rename to src/elfio/elfio_dump.hpp diff --git a/include/hip/hcc_detail/elfio/elfio_dynamic.hpp b/src/elfio/elfio_dynamic.hpp similarity index 100% rename from include/hip/hcc_detail/elfio/elfio_dynamic.hpp rename to src/elfio/elfio_dynamic.hpp diff --git a/include/hip/hcc_detail/elfio/elfio_header.hpp b/src/elfio/elfio_header.hpp similarity index 100% rename from include/hip/hcc_detail/elfio/elfio_header.hpp rename to src/elfio/elfio_header.hpp diff --git a/include/hip/hcc_detail/elfio/elfio_note.hpp b/src/elfio/elfio_note.hpp similarity index 100% rename from include/hip/hcc_detail/elfio/elfio_note.hpp rename to src/elfio/elfio_note.hpp diff --git a/include/hip/hcc_detail/elfio/elfio_relocation.hpp b/src/elfio/elfio_relocation.hpp similarity index 100% rename from include/hip/hcc_detail/elfio/elfio_relocation.hpp rename to src/elfio/elfio_relocation.hpp diff --git a/include/hip/hcc_detail/elfio/elfio_section.hpp b/src/elfio/elfio_section.hpp similarity index 100% rename from include/hip/hcc_detail/elfio/elfio_section.hpp rename to src/elfio/elfio_section.hpp diff --git a/include/hip/hcc_detail/elfio/elfio_segment.hpp b/src/elfio/elfio_segment.hpp similarity index 100% rename from include/hip/hcc_detail/elfio/elfio_segment.hpp rename to src/elfio/elfio_segment.hpp diff --git a/include/hip/hcc_detail/elfio/elfio_strings.hpp b/src/elfio/elfio_strings.hpp similarity index 100% rename from include/hip/hcc_detail/elfio/elfio_strings.hpp rename to src/elfio/elfio_strings.hpp diff --git a/include/hip/hcc_detail/elfio/elfio_symbols.hpp b/src/elfio/elfio_symbols.hpp similarity index 100% rename from include/hip/hcc_detail/elfio/elfio_symbols.hpp rename to src/elfio/elfio_symbols.hpp diff --git a/include/hip/hcc_detail/elfio/elfio_utils.hpp b/src/elfio/elfio_utils.hpp similarity index 100% rename from include/hip/hcc_detail/elfio/elfio_utils.hpp rename to src/elfio/elfio_utils.hpp diff --git a/src/hip_module.cpp b/src/hip_module.cpp index b6bc9d63fd..dee69e7ba0 100644 --- a/src/hip_module.cpp +++ b/src/hip_module.cpp @@ -34,7 +34,7 @@ THE SOFTWARE. #include #include -#include "hip/hcc_detail/elfio/elfio.hpp" +#include "elfio/elfio.hpp" #include "hip/hip_runtime.h" #include "hip_hcc_internal.h" #include "trace_helper.h"