index.html (4280B)
1 <html> 2 <head> 3 <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 4 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 5 <meta http-equiv="Content-Language" content="en" /> 6 <title>skalibs: a C library for system programming</title> 7 <meta name="Description" content="skalibs: a C library for system programming" /> 8 <meta name="Keywords" content="skalibs package skarnet.org libraries public domain" /> 9 <!-- <link rel="stylesheet" type="text/css" href="//skarnet.org/default.css" /> --> 10 </head> 11 <body> 12 13 <p> 14 <a href="//skarnet.org/software/">Software</a><br /> 15 <a href="//skarnet.org/">skarnet.org</a> 16 </p> 17 18 <h1> skalibs </h1> 19 20 <h2> What is it ? </h2> 21 22 <p> 23 skalibs is a package centralizing the free software / open source C development 24 files used for building all software at skarnet.org: it contains essentially 25 general-purpose libraries. 26 You will need to install skalibs if you plan to build skarnet.org software. 27 The point is that you won't have to download and compile big libraries, and care 28 about portability issues, 29 everytime you need to build a package: do it only once. 30 </p> 31 32 <p> 33 skalibs can also be used as a sound basic start for C development. There 34 are a lot of general-purpose libraries out there; but if your main goal is 35 to produce <em>small</em> and <em>secure</em> C code with a focus on system 36 programming, skalibs might be for you. 37 </p> 38 39 <hr /> 40 41 <h2> Installation </h2> 42 43 <h3> Requirements </h3> 44 45 <ul> 46 <li> A Unix-like system, compliant with 47 <a href="https://pubs.opengroup.org/onlinepubs/9699919799/">The 48 Open Group Base Specifications Issue 7</a>, 49 with a standard C development environment </li> 50 <li> GNU make, version 3.81 or later </li> 51 </ul> 52 53 <h3> Licensing </h3> 54 55 <p> 56 skalibs is free software. It is available under the 57 <a href="https://opensource.org/licenses/ISC">ISC license</a>. 58 </p> 59 60 <h3> Download </h3> 61 62 <ul> 63 <li> The current released version of skalibs is <a href="skalibs-2.14.2.0.tar.gz">2.14.2.0</a>. </li> 64 <li> Alternatively, you can checkout a copy of the 65 <a href="//git.skarnet.org/cgi-bin/cgit.cgi/skalibs/">skalibs 66 git repository</a>: 67 <pre> git clone git://git.skarnet.org/skalibs </pre> </li> 68 <li> There's also a 69 <a href="https://github.com/skarnet/skalibs">GitHub mirror</a> 70 of the skalibs git repository. </li> 71 </ul> 72 73 <h3> Compilation </h3> 74 75 <ul> 76 <li> See the enclosed INSTALL file for installation details. </li> 77 <li> skalibs sports a few uncommon options to its <tt>./configure</tt> script. 78 <a href="flags.html">This page</a> documents them in detail. </li> 79 </ul> 80 81 <h3> Upgrade notes </h3> 82 83 <ul> 84 <li> <a href="upgrade.html">This page</a> lists the differences to be aware of between 85 the previous versions of skalibs and the current one. </li> 86 </ul> 87 88 <h3> Cross-compilation </h3> 89 90 <p> 91 Cross-compilation is tricky. skalibs provides system-agnostic interfaces, so all the 92 other skarnet.org packages cross-compile easily; but some effort needs to be made to 93 cross-compile skalibs, see <a href="crosscompile.html">this page</a>. 94 95 <hr /> 96 97 <h2> Reference </h2> 98 99 <h3> Libraries </h3> 100 101 <ul> 102 <li> <a href="libskarnet.html">The <tt>skarnet</tt> library interface</a> </li> 103 </ul> 104 105 <hr /> 106 107 <h2> Similar work </h2> 108 109 <p> 110 Here are a few other libraries originating from the same place as 111 skalibs, i.e. people start to reuse and package, or rewrite, 112 <a href="djblegacy.html">code from Dan J. Bernstein</a>, and then patch 113 after patch, addition after addition, the code evolves into a project 114 of its own: 115 </p> 116 117 <ul> 118 <li> <a href="http://b0llix.net/">Wayne Marshall</a>'s <em>libasagna</em>, 119 available for instance in the 120 <a href="http://b0llix.net/perp/site.cgi">perp</a> package </li> 121 <li> <a href="http://www.fefe.de/">Felix von Leitner</a>'s 122 <a href="http://www.fefe.de/libowfat/">libowfat</a> </li> 123 <li> <a href="http://untroubled.org/">Bruce Guenter</a>'s 124 <a href="http://untroubled.org/bglibs/">bglibs</a> </li> 125 <li> <a href="https://dogmap.org/">Paul Jarc</a>'s 126 <a href="https://code.dogmap.org./prjlibs/">prjlibs</a>, which also 127 includes libraries for Scheme programming </li> 128 </ul> 129 130 <h2> Related resources </h2> 131 132 <ul> 133 <li> <tt>skalibs</tt> is discussed on the 134 <a href="//skarnet.org/lists/#skaware">skaware</a> mailing-list. </li> 135 </ul> 136 137 </body> 138 </html>