Next: , Previous: , Up: R6RS-Elf   [Contents][Index]


1 Introduction

This library implements an ELF parser for R6RS Scheme under the name ‘(parser elf)’.

The ELF file format is a simple format but it deals with low-level constructs in computing which may pose a difficulty to those who wish to understand it. In the next sections we will attempt to explain how the ELF format should be parsed without explaining the underlying utility of its contents.

Why should you wish to use a pure R6RS Scheme solution for parsing ELF files when you can use any of the numerous C libraries? R6RS-elf is appropriate for those wishing to minimize the C footprint on their project.