Squashed 'external/ELFIO/' content from commit 94f7706
git-subtree-dir: external/ELFIO git-subtree-split: 94f7706b5325b2ad9872e4481278278592cf86c9
This commit is contained in:
Executable
+95
@@ -0,0 +1,95 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>ELFIO - C++ library for reading and generating ELF files</title>
|
||||
<link rel="stylesheet" href="style.css" type="text/css"/>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<table summary="Title and Sourceforge logo.">
|
||||
<tr>
|
||||
<td align="left">
|
||||
<h1>ELFIO - C++ library for reading and generating ELF files</h1>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<div class="links">
|
||||
<h3>Links</h3>
|
||||
<ul class="menu">
|
||||
|
||||
<li>Download the source distribution from
|
||||
<a href="http://sourceforge.net/projects/elfio/files/">SourceForge</a>
|
||||
or
|
||||
<a href="https://github.com/serge1/ELFIO/releases">GitHub</a>
|
||||
repositories
|
||||
</li><br/>
|
||||
|
||||
<li>Read the <a href="elfio.pdf">Tutorial and User Manual</a></li><br/>
|
||||
|
||||
<li>Visit the
|
||||
<a href="https://github.com/serge1/ELFIO">GitHub project page</a></li><br/>
|
||||
|
||||
<li>Visit the
|
||||
<a href="http://sourceforge.net/projects/elfio/">SourceForge project page</a></li><br/>
|
||||
|
||||
<li><a href="oldsite/index.htm">Old documentation</a> for outdated 1.0.3 version of the library</li><br/>
|
||||
|
||||
<li>Send <a href="mailto:to_serge@users.sourceforge.net">feedback, comments, patches, etc.</a></li></br>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="main">
|
||||
|
||||
<p>
|
||||
<em>ELFIO</em> is a small, header-only C++ library that provides a simple interface for
|
||||
reading and generating files in ELF binary format.
|
||||
</p>
|
||||
<p>
|
||||
It is used as a standalone library - it is not dependent on any other product
|
||||
or project. Adhering to ISO C++, it compiles on a wide variety of architectures
|
||||
and compilers.
|
||||
</p>
|
||||
<p>
|
||||
While the library is easy to use, some basic knowledge of the ELF binary format
|
||||
is required. Such Information can be easily found on the Web.
|
||||
</p>
|
||||
<p>
|
||||
The current version of <em>ELFIO</em> library is 3.x and it is distributed under
|
||||
<a href="http://www.opensource.org/licenses/MIT">MIT License</a> conditions.
|
||||
</p>
|
||||
<p>
|
||||
Note for users of previous library versions 1.0.x: Version 3.x is not source
|
||||
compatible to earlier versions. Transition to the new library interface is
|
||||
straightforward though.
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="by">
|
||||
<p class="author">
|
||||
The library and the page is maintained by
|
||||
<a href="mailto:to_serge@users.sourceforge.net">Serge Lamikhov-Center</a>.</br>
|
||||
</p>
|
||||
|
||||
<table summary="Title and Sourceforge logo.">
|
||||
<tr>
|
||||
<td align="left" class=""author>
|
||||
<p class="author">
|
||||
Project Web Hosted by
|
||||
</p>
|
||||
</td>
|
||||
<td align="left">
|
||||
<a href="http://sourceforge.net/projects/elfio"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=19959&type=10" width="80" height="15" border="0" alt="Get ELFIO library" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Executable
+131
@@ -0,0 +1,131 @@
|
||||
/*
|
||||
color:#ffffff; white
|
||||
color:#e0e0e0; light gray
|
||||
color:#f8f8f8; light gray
|
||||
color:#003366; dark blue
|
||||
color:#555555; gray
|
||||
color:#ff9933; light orange
|
||||
color:#cc3300; red/brown/orange
|
||||
color:#660066; purple
|
||||
color:#669900; green
|
||||
*/
|
||||
|
||||
a {
|
||||
color:#003366;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color:#ff9933;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: verdana, tahoma, helvetica, arial, sans-serif;
|
||||
font-size: 90%;
|
||||
background-color:#ffffff;
|
||||
margin: 1em;
|
||||
}
|
||||
|
||||
pre {
|
||||
font-family: courier, serif;
|
||||
background-color:#f8f8f8;
|
||||
margin: 1.5em;
|
||||
font-size:90%;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style: circle outside;
|
||||
font-stretch:extra-expanded;
|
||||
/* font-size:90%;*/
|
||||
}
|
||||
|
||||
ul.menu { /* inherits from ul */
|
||||
padding-left: 1em;
|
||||
}
|
||||
|
||||
|
||||
em {
|
||||
color:#FF7700;
|
||||
font-size:110%;
|
||||
}
|
||||
|
||||
h1,h2,h3{
|
||||
color:#FF7700;
|
||||
}
|
||||
|
||||
h1 {
|
||||
border-color:#d0d0d0;
|
||||
border-style:solid;
|
||||
border-width:1px;
|
||||
font-weight:bold;
|
||||
padding: 0.2em;
|
||||
background-color:#f8f8f8
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size:120%;
|
||||
font-weight:bold;
|
||||
border-bottom-style:solid;
|
||||
border-bottom-width:1px;
|
||||
border-bottom-color:#d0d0d0;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size:110%;
|
||||
font-weight:bold;
|
||||
font-style:italic;
|
||||
}
|
||||
|
||||
tt {
|
||||
font-family: courier, serif;
|
||||
}
|
||||
|
||||
tt.classname {
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
tt.constant {
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
|
||||
p {
|
||||
line-height: 1.5em;
|
||||
}
|
||||
|
||||
|
||||
p.author {
|
||||
/* line-height: 0.5em; */
|
||||
font-size:70%;
|
||||
}
|
||||
|
||||
|
||||
div.links{
|
||||
float: left;
|
||||
clear: left;
|
||||
width: 12em;
|
||||
background-color:#f8f8f8;
|
||||
border-style:solid;
|
||||
border-width:1px;
|
||||
border-color:#d0d0d0;
|
||||
margin-bottom: 0.5em;
|
||||
padding: 0.5em 0.5em 0.5em 0.5em;
|
||||
margin: 0.5em 0.5em 0em 0em;
|
||||
}
|
||||
|
||||
div.main{
|
||||
border-style:solid;
|
||||
border-width:1px;
|
||||
border-color:#d0d0d0;
|
||||
margin: 0.5em 0em 0.5em 14em;
|
||||
padding: 0.5em 0.5em 0.5em 0.5em;
|
||||
}
|
||||
|
||||
div.by{
|
||||
line-height: 0.5em;
|
||||
border-width:1px;
|
||||
border-color:#d0d0d0;
|
||||
margin: 0.5em 0em 0.5em 14em;
|
||||
padding: 0.5em 0.5em 0.5em 0.5em;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user