diff --git a/cpukit/libdl/rtl-mdreloc-moxie.c b/cpukit/libdl/rtl-mdreloc-moxie.c index ce270d9f1c..7f9f78f5cd 100644 --- a/cpukit/libdl/rtl-mdreloc-moxie.c +++ b/cpukit/libdl/rtl-mdreloc-moxie.c @@ -52,6 +52,9 @@ uint32_t rtems_rtl_elf_section_flags (const rtems_rtl_obj* obj, const Elf_Shdr* shdr) { + (void) obj; + (void) shdr; + return 0; } @@ -90,6 +93,8 @@ rtems_rtl_elf_arch_section_free (const rtems_rtl_obj* obj, bool rtems_rtl_elf_rel_resolve_sym (Elf_Word type) { + (void) type; + return true; } @@ -133,6 +138,10 @@ rtems_rtl_elf_relocate_rela (rtems_rtl_obj* obj, const Elf_Byte syminfo, const Elf_Word symvalue) { + (void) obj; + (void) symname; + (void) syminfo; + Elf_Addr *where; Elf_Sword tmp; diff --git a/cpukit/score/cpu/moxie/moxie-exception-frame-print.c b/cpukit/score/cpu/moxie/moxie-exception-frame-print.c index 67a7496b72..113d83a78e 100644 --- a/cpukit/score/cpu/moxie/moxie-exception-frame-print.c +++ b/cpukit/score/cpu/moxie/moxie-exception-frame-print.c @@ -33,5 +33,7 @@ void _CPU_Exception_frame_print( const CPU_Exception_frame *frame ) { + (void) frame; + /* TODO */ }