oldnews.html 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887
  1. <!--#include file="header.html" -->
  2. <ul>
  3. <p>
  4. <li> <b>9 September 2003, uClibc 0.9.21 Released</b>
  5. <br>
  6. CodePoet Consulting is pleased to announce the immediate availability of
  7. uClibc 0.9.21. This release has been brewing for several months now, and
  8. provides quite a lot of additional functionality and quite a few bug fixes
  9. as well. Many people will be pleased that this release fixes the
  10. "dlopen()'ing libraries that depend on libraries" problem.
  11. <p>
  12. The biggest thing in this release (and I do mean that literally) is that
  13. uClibc now has full ANSI/ISO C99 locale support. Well, except for
  14. wcsftime() and collating items in regex, which are not done yet. Adding
  15. support for the default set of locales (169 UTF-8 locales and 144 locales
  16. using other codesets) will enlarge uClibc by around 300k. Still, if you
  17. need locale support, that is still much better than the roughly 30MB the
  18. comparable set of locale date occupies with glibc. And you can of course
  19. reduce the 300k by reducing the number of supported locales.
  20. <p>
  21. As usual, this release has many improvements, both large and small. At
  22. this point, most applications that compile and work with glibc will also
  23. compile and run with uClibc. Both Perl and Python pass all the tests in
  24. their test suites (both with and without locale support enabled). We
  25. invite you to grab a copy of the latest <a
  26. href="http://ltp.sourceforge.net/"> Linux Test Project test suite</a> and
  27. give uClibc some abuse. We are not yet perfect, but we are getting pretty
  28. darn close.
  29. <p>
  30. This release is not binary compatible with earlier releases. Depending on
  31. your configuration, you may actually still be binary compatible, but it
  32. would be a good idea to recompile your applications when moving to the
  33. uClibc 0.9.21 release. We are sorry about that, but we have never promised
  34. to provide binary compatibility until we hit version 1.0. And even then,
  35. if you change your uClibc configuration, you still still generally need to
  36. recompile...
  37. <p>
  38. As usual, the
  39. <a href="http://www.uclibc.org/downloads/Changelog">Changelog</a>,
  40. <a href="http://www.uclibc.org/downloads/Changelog.full">detailed changelog</a>,
  41. and <a href="http://www.uclibc.org/downloads/uClibc-0.9.21.tar.bz2">source code for this release</a>
  42. are available <a href="http://www.uclibc.org/downloads/">here</a>.
  43. <p>
  44. Updated uClibc development systems using uClibc 0.9.21 will be made
  45. available within a few days.
  46. <p>
  47. <p>
  48. <li> <b>30 June 2003, uClibc 0.9.20 Released</b>
  49. <br>
  50. CodePoet Consulting is pleased to announce the immediate availability of
  51. uClibc 0.9.20. This is primarily a bug-fix release. This release remains
  52. binary compatible with 0.9.18 and 0.9.19 (as long as you leave the
  53. new UCLIBC_HAS_TM_EXTENSIONS option disabled), so you don't have to recompile
  54. everything if you don't really feel like it.
  55. <p>
  56. This release has many small improvements. At this point, most applications
  57. that compile and work with glibc will also compile and run with uClibc.
  58. Perl and Python even pass all the tests in their test suites.
  59. <p>
  60. There is currently one notable exception. Applications that use dlopen()
  61. to load libraries that themselves depend on other libraries, may have weak
  62. symbols within those depended-upon libraries resolved incorrectly. This
  63. problem is currently being worked on. Other than that, everything seems
  64. to now be working as expected....
  65. <p>
  66. As usual, the
  67. <a href="http://www.uclibc.org/downloads/Changelog">Changelog</a>,
  68. <a href="http://www.uclibc.org/downloads/Changelog.full">detailed changelog</a>,
  69. and <a href="http://www.uclibc.org/downloads/uClibc-0.9.20.tar.bz2">source code for this release</a>
  70. are available <a href="http://www.uclibc.org/downloads/">here</a>.
  71. <p>
  72. <p>
  73. <li> <b>30 June 2003, dev systems updated to uClibc 0.9.20</b>
  74. <br>
  75. The uClibc development systems for
  76. <a href="http://www.kernel.org/pub/linux/libs/uclibc/root_fs_i386.bz2">i386</a>,
  77. <a href="http://www.kernel.org/pub/linux/libs/uclibc/root_fs_powerpc.bz2">powerpc</a>,
  78. <a href="http://www.kernel.org/pub/linux/libs/uclibc/root_fs_arm.bz2">arm</a>,
  79. <a href="http://www.kernel.org/pub/linux/libs/uclibc/root_fs_mipsel.bz2">mips</a>,
  80. have been updated to uClibc 0.9.20. Several problems have been fixed up,
  81. gcc has been updated to version 3.3, and Perl 5.8.0 is now included.
  82. <p>
  83. This is a 150 MB ext2 filesystem that runs natively on the specified
  84. architecture. It contains all the development software you need to build
  85. your own uClibc applications, including bash, coreutils, findutils,
  86. diffutils, patch, sed, ed, flex, bison, file, gawk, tar, grep gdb, strace,
  87. make, gcc, g++, autoconf, automake, ncurses, zlib, openssl, openssh perl,
  88. and more. And of course, everything is dynamically linked against uClibc. By
  89. using a uClibc only system, you can avoid all the painful
  90. cross-configuration problems that have made using uClibc somewhat painful
  91. in the past. If you want to quickly get started with testing or using
  92. uClibc you should give these images a try. You can loop mount and then
  93. chroot into them, you can boot into them using user-mode Linux, and you can
  94. even 'dd' them to a spare partition and use resize2fs to make them fill the
  95. drive. Whatever works for you.
  96. <p> If you would like to build your own custom uClibc system, you can
  97. use <a href="/cgi-bin/cvsweb/buildroot/">buildroot</a>, which is
  98. how the uClibc development systems were created.
  99. <p>
  100. <p>
  101. <li> <b>6 March 2003, development system updates</b>
  102. <br>
  103. The uClibc development systems for
  104. <a href="http://www.kernel.org/pub/linux/libs/uclibc/root_fs_i386.bz2">i386</a>,
  105. <a href="http://www.kernel.org/pub/linux/libs/uclibc/root_fs_powerpc.bz2">powerpc</a>,
  106. <a href="http://www.kernel.org/pub/linux/libs/uclibc/root_fs_arm.bz2">arm</a>,
  107. and now for the first time
  108. <a href="http://www.kernel.org/pub/linux/libs/uclibc/root_fs_mipsel.bz2">mips</a>,
  109. have been updated to uClibc 0.9.19. Several smaller problems
  110. have also been fixed up.
  111. <p>
  112. This is an ext2 filesystem that runs natively on the specified
  113. architecture. It contains all the development software you need to build
  114. your own uClibc applications, including bash, coreutils, findutils,
  115. diffutils, patch, sed, ed, flex, bison, file, gawk, tar, grep gdb, strace,
  116. make, gcc, g++, autoconf, automake, ncurses, zlib, openssl, openssh and
  117. more. And of course, everything is dynamically linked against uClibc. By
  118. using a uClibc only system, you can avoid all the painful
  119. cross-configuration problems that have made using uClibc somewhat painful
  120. in the past. If you want to quickly get started with testing or using
  121. uClibc you should give these images a try. You can loop mount and
  122. then chroot into them, you can boot into them using user-mode Linux,
  123. you can even 'dd' them to a spare partition and use resize2fs to
  124. make them fill the drive. Whatever works best for you.
  125. <p>
  126. Have Fun.
  127. <p>
  128. <p>
  129. <li> <b>3 March 2003, uClibc 0.9.19 Released</b>
  130. <br>
  131. CodePoet Consulting is pleased to announce the immediate availability of
  132. uClibc 0.9.19. This is once again primarily a bug-fix release. Several
  133. critical problems with system calls were fixed, the pthreads library was
  134. improved, debugging of applications using uClibc's pthreads library is
  135. now possible (requires gdb 5.3 or newer that is compiled using uClibc),
  136. and a number of other random fixes are included. This release retains
  137. binary compatibility with uClibc 0.9.18 (except for mips, which didn't
  138. work properly with uClibc 0.9.18 anyways). Updated development system
  139. images compiled with uClibc 0.9.19 will be released shortly.
  140. <p>
  141. As usual, the
  142. <a href="http://www.uclibc.org/downloads/Changelog">Changelog</a> and <a
  143. href="http://www.uclibc.org/downloads/uClibc-0.9.19.tar.bz2">source code for this release</a>
  144. are available <a href="http://www.uclibc.org/downloads/">here</a>.
  145. <p>
  146. <p>
  147. <li> <b>17 February 2003, development system updates</b>
  148. <br>
  149. The uClibc development systems for
  150. <a href="http://www.kernel.org/pub/linux/libs/uclibc/root_fs_i386.bz2">i386</a>
  151. and
  152. <a href="http://www.kernel.org/pub/linux/libs/uclibc/root_fs_powerpc.bz2">powerpc</a>,
  153. and
  154. <a href="http://www.kernel.org/pub/linux/libs/uclibc/root_fs_arm.bz2">arm</a>
  155. have been again updated. This time around a few broken symlinks
  156. (one preventing C++ code from compiling) have been fixed, several
  157. system calls related to uids and gid have been fixed, the powerpc
  158. system call mechanism has been updated, and GNU tar and GNU grep
  159. have been added. gcc, gcc+, ssh, etc are all still included and
  160. things remain binary compatible with uClibc 0.9.18.
  161. Have Fun.
  162. <p>
  163. <p>
  164. <li> <b>12 February 2003, development system updates</b>
  165. <br>
  166. The uClibc development system has had a number of problems
  167. fixed, and has been updated for uClibc 0.9.18. The
  168. <a href="http://www.kernel.org/pub/linux/libs/uclibc/root_fs_i386.bz2">i386</a>
  169. and
  170. <a href="http://www.kernel.org/pub/linux/libs/uclibc/root_fs_powerpc.bz2">powerpc</a>,
  171. and
  172. <a href="http://www.kernel.org/pub/linux/libs/uclibc/root_fs_arm.bz2">arm</a>
  173. devel systems are updated and ready to download and use.
  174. Have Fun.
  175. <p>
  176. <p>
  177. <li> <b>12 February 2003, uClibc 0.9.18 Released</b>
  178. <br>
  179. CodePoet Consulting is pleased to announce the immediate availability of
  180. uClibc 0.9.18. This is primarily a bug-fix release, as there were a few
  181. directory handling problem that could cause application using uClibc 0.9.17
  182. to either segfault or lose the first character when reading directry names.
  183. Unfortunately, once again, this release is _NOT_ binary compatible with
  184. earlier uClibc releases. I _think this will be the last time (with the
  185. possible exception of some future changes to our locale support...)
  186. <p>
  187. As usual, the
  188. <a href="http://www.uclibc.org/downloads/Changelog">Changelog</a>
  189. and <a href="http://www.uclibc.org/downloads/uClibc-0.9.18.tar.bz2">source code</a>
  190. for this release are available <a href="http://www.uclibc.org/downloads/">here</a>.
  191. You might want to download uClibc from the closest
  192. <a href="http://kernel.org/mirrors/">kernel.org mirror site</a>.
  193. Just pick the closest mirror site, and then go to
  194. <a href="http://www.kernel.org/pub/linux/libs/uclibc/">
  195. http://www.XX.kernel.org/pub/linux/libs/uclibc/</a>
  196. to download uClibc, where XX is your two letter country code.
  197. <p>
  198. <p>
  199. <p>
  200. <li> <b>25 January 2003, uClibc 0.9.17 Released</b>
  201. <br>
  202. CodePoet Consulting is pleased to announce the immediate availability of
  203. uClibc 0.9.17. The biggest piece of news with this release, thanks to
  204. Manuel Novoa's continuing hard work, is that we now have fully standards
  205. compliant locale support (optional of course). The support works nicely,
  206. (though configuring the locales you wish to support is still manual -- a
  207. task for the next release). Full locale data for over 300 locales adds
  208. approximately 250k. The collation data for all supported locales is
  209. roughly 180k. This may seem rather large to some -- but it is much smaller
  210. than the approximately 40 MB needed by Glibc to provide the same data. And
  211. if you don't need it, you can either disable locale support entirely, or
  212. enable a smaller set of locales.
  213. <p>
  214. This release also fixes <em>lots and lots</em> of bugs. The arm
  215. architecture support (I am embarrassed to note) was totally broken in the
  216. last release, but is now working as expected. A security problem (a
  217. buffer overflow in getlogin_r) was fixed. And there were architecture
  218. updates across the board (x86, arm, powerpc, cris, h8300, sparc, and mips).
  219. And of course, this release includes the usual pile of bug fixes. Many
  220. thanks for the large number of patches and fixes that were contributed!
  221. <p>
  222. Unfortunately, this release is not binary compatible with earlier uClibc
  223. releases. As noted as item 3 <a href="downloads/Glibc_vs_uClibc_Differences.txt">here</a>,
  224. uClibc does not (yet) attempt to
  225. ensure binary compatibility across releases. We will eventually do that
  226. (once we reach the "1.0" release) but not yet. A few bugs turned up that
  227. needed to be fixed, and the only good way to fix them was to change some
  228. fundamental data structure sizes. As a result, this release is _NOT_
  229. binary compatible with earlier releases -- you will need to recompile your
  230. applications. The x86, arm, powerpc, and mips architectures (i.e. the
  231. systems Erik has available in his office for testing) have been tested and
  232. are known to work following this change. Other architectures <em>may</em>
  233. need additional updates. Sorry about that, but it had to be done.
  234. <p>
  235. As usual, the
  236. <a href="http://www.uclibc.org/downloads/Changelog">Changelog</a>
  237. and <a href="http://www.uclibc.org/downloads/uClibc-0.9.17.tar.bz2">source code</a>
  238. for this release are available <a href="http://www.uclibc.org/downloads/">here</a>.
  239. You might want to download uClibc from the closest
  240. <a href="http://kernel.org/mirrors/">kernel.org mirror site</a>.
  241. Just pick the closest mirror site, and then go to
  242. <a href="http://www.kernel.org/pub/linux/libs/uclibc/">
  243. http://www.XX.kernel.org/pub/linux/libs/uclibc/</a>
  244. to download uClibc, where XX is your two letter country code.
  245. <p>
  246. <p>
  247. <li> <b>25 January 2003, dev system updates, arm image released</b>
  248. <br>
  249. A number of additional problems have been fixed and the arm build
  250. is now, finally, compiling and working as expected. As such,
  251. I have updated the <a href="http://www.kernel.org/pub/linux/libs/uclibc/root_fs_i386.bz2">
  252. i386 development system image</a>, the
  253. <a href="http://www.kernel.org/pub/linux/libs/uclibc/root_fs_powerpc.bz2">
  254. powerpc development system image</a>, and I am also releasing
  255. upon an unsuspecting world the brand new
  256. <a href="http://www.kernel.org/pub/linux/libs/uclibc/root_fs_arm.bz2">
  257. arm development system image</a>!
  258. Have fun!
  259. <p>
  260. All three development system images were compiled and built using the stock
  261. <a href="/cgi-bin/cvsweb/buildroot/">buildroot</a> system. These were also
  262. built using the (about to be announced in a couple on minutes) uClibc
  263. 0.9.17 release, so if you want to begin compiling and testing stuff with
  264. uClibc, but you don't feel like spending the _hours_ it takes to download,
  265. configure, and build your own uClibc based development system -- then you
  266. may want to download these and give them a try. They each contain a 100 MB
  267. ext2 filesystem with everything you need to begin compiling your own
  268. applications. I have (at least minimally) tested each of them and verified
  269. that the included gcc and g++ compilers produce working uClibc linked
  270. executables.
  271. <p>
  272. Oh, and I have also have updated the uClibc/gcc toolchain builders, so
  273. if you just want a simple uClibc/gcc toolchain,
  274. <a href="/cgi-bin/cvsweb/toolchain/">one of these should work for you.</a>
  275. <p>
  276. <p>
  277. <li> <b>10 January 2003, dev system updates, powerpc image released</b>
  278. <br>
  279. A few problems showed up in yesterday's development system release
  280. (adduser was broken, gdb didn't work, libstdc++ shared libs were missing,
  281. etc). So I've updated the <a href="http://www.kernel.org/pub/linux/libs/uclibc/root_fs_i386.bz2">
  282. i386 development system image</a> to fix these problems.
  283. Also, the <a href="http://www.kernel.org/pub/linux/libs/uclibc/root_fs_powerpc.bz2">
  284. powerpc development system image</a> has finally finished compiling
  285. and is now released upon an unsuspecting world. Have fun!
  286. <p>
  287. <p>
  288. <li> <b>9 January 2003, uClibc development system released</b>
  289. <br>
  290. CodePoet Consulting (i.e. Erik) has been working hard on <a
  291. href="/cgi-bin/cvsweb/buildroot/">buildroot</a> recently, and is pleased to
  292. offer a full stand-alone uClibc-only development system. This is an ext2
  293. filesystem for i386 containing all the development software you need to
  294. build your own uClibc applications. With bash, awk, make, gcc, g++,
  295. autoconf, automake, ncurses, zlib, openssl, openssh, gdb, strace, valgrind,
  296. busybox, GNU coreutils, and more, this should have pretty much everything
  297. you need to get started building your own applications linked against
  298. uClibc. By using a uClibc only system, you can avoid all the painful
  299. cross-configuration problems that have made using uClibc somewhat painful
  300. in the past. A powerpc and an arm version are in progress. Expect them
  301. to be released shortly....
  302. <p>
  303. The <a href="http://www.kernel.org/pub/linux/libs/uclibc/root_fs_i386.bz2">
  304. uClibc development system is an 18MB bzip2 compressed ext2 filesystem</a>,
  305. so be prepared to wait if you are on a slow link. If you wish to have more
  306. space, you can loop mount it and 'cp -a' the contents to their own
  307. partition, or do what I did... <EM>WARNING, the following can be very
  308. dangerous. Please be sure you know what you are doing before trying this.
  309. I am not responsible if you lose all your important data.</EM>I had a spare
  310. hard drive (in my case /dev/hdg but you'll want to adapt this to your own
  311. needs), so I partitioned it with a single ext2 partition filling the drive
  312. (in my case /dev/hdg1). Then I ran:<PRE>
  313. bzcat root_fs_i386.bz2 | dd of=/dev/hdg1
  314. e2fsck -f /dev/hdg1
  315. resize2fs -p /dev/hdg1</PRE>
  316. which overwrote everything on /dev/hdg with the new uClibc devel system,
  317. and then expanded the filesystem with the uClibc devel system till it
  318. filled the whole drive.
  319. <p>
  320. <p>
  321. <li> <b>8 November 2002, uClibc 0.9.16 Released</b>
  322. <br>
  323. CodePoet Consulting is pleased to announce the immediate availability of
  324. uClibc 0.9.16. This release adds full support (including a native shared
  325. library loader) for the CRIS architecture, contributed by Tobias Anderberg.
  326. Stefan Allius contributed a number of patches to fix the initialization
  327. order for shared library global constructors and destructors as well as a
  328. large number of SuperH fixes and cleanups. uClibc now compiles with
  329. newer versions of gcc (i.e. RedHat 8.0). Thanks to Christian Michon,
  330. uClibc no longer requires perl to compile. Steven J. Hill fixed dlopen for
  331. mips. Several problems with pty and tty handling were fixed. Manuel Novoa
  332. added new support for an /etc/TZ file to globally set the system timezone,
  333. and fixed up a number of remaining wide char issues. Manuel is still hard
  334. at work on bringing full locale support (optional of course) to uClibc.
  335. And of course, this release includes the usual pile of bug fixes. Many thanks
  336. for the large number of patches and fixes that were contributed!
  337. <p>
  338. Erik and Manuel have been working on a
  339. <a href="downloads/Glibc_vs_uClibc_Differences.txt">
  340. document describing some of the differences between uClibc and glibc.</a>
  341. It's not yet 100% complete, and it hasn't been nicely formatted yet. But
  342. it contains a lot of helpful information and is worth a look.
  343. <p>
  344. And finally, the the old uClibc configuration system has been completely
  345. removed (and there was much rejoicing). It was replaced with an entirely
  346. new system based on <a href="http://www.xs4all.nl/~zippel/lc/">LinuxKernelConf</a>,
  347. which has since been included into Linux 2.5.45, so it looks like Erik made
  348. the right choice. Of course, those who have existing build systems using uClibc
  349. will need to make a few changes... We think the change is worth it.
  350. <p>
  351. As usual, the
  352. <a href="http://www.uclibc.org/downloads/Changelog">Changelog</a>
  353. and <a href="http://www.uclibc.org/downloads/uClibc-0.9.16.tar.bz2">source code</a>
  354. for this release are available <a href="http://www.uclibc.org/downloads/">here</a>.
  355. You might want to download uClibc from the closest
  356. <a href="http://kernel.org/mirrors/">kernel.org mirror site</a>.
  357. Just pick the closest mirror site, and then go to
  358. <a href="http://www.kernel.org/pub/linux/libs/uclibc/">
  359. http://www.XX.kernel.org/pub/linux/libs/uclibc/</a>
  360. to download uClibc, where XX is your two letter country code.
  361. <p>
  362. Updated gcc-3.2 and gcc-2.95 toolchains will be released shortly.
  363. <p>
  364. <p>
  365. <li> <b>16 September 2002, gcc-3.2 and gcc-2.95 toolchains released</b>
  366. <br>
  367. CodePoet Consulting (i.e. Erik) has released updated gcc-3.2 and gcc-2.95
  368. uClibc toolchains. These toolchains build real gcc cross compilers (i.e.
  369. not just a wrapper) and create executables linked vs uClibc. The new
  370. gcc-3.2 provides uClibc support with the latest and greatest compiler
  371. available from the gcc team. The gcc-2.95 toolchain has been updated to
  372. the latest version of uClibc and now provides full C++ support, using the
  373. <a href="http://www.stlport.org/">STLport</a> standard C++ library.
  374. <p>
  375. This toolchain should make it easy for anyone to build uClibc based
  376. applications.
  377. <a href="/cgi-bin/cvsweb/toolchain/"> Source code can be downloaded here</a>.
  378. Be aware that much of the needed source code will actually be downloaded on
  379. when you compile the toolchains. To build a toolchain, simply
  380. grab the source, edit the Makefile to select where you would like
  381. the toolchain installed, run 'make', and then go watch TV, eat
  382. dinner, or visit with your friends while it compiles. It takes
  383. about 15 minutes for Erik to compile the gcc-3.2 toolchain (w/C++ support)
  384. on his Athlon XP 1600 (not counting the time it takes to download
  385. source code).
  386. <p>
  387. <p>
  388. <li> <b>27 August 2002, uClibc 0.9.15 Released</b>
  389. <br>
  390. CodePoet Consulting is pleased to announce the immediate availability
  391. of uClibc 0.9.15. This release fixes a number of problems that turned
  392. up since the last release. The good news is that uClibc now
  393. passes all tests in the perl 5.8 and Python 2.2.1 test suites, both with
  394. and without pthreads. So without any further ado....
  395. <p>
  396. The
  397. <a href="http://www.uclibc.org/downloads/Changelog">Changelog</a>
  398. and <a href="http://www.uclibc.org/downloads/uClibc-0.9.15.tar.bz2">source code</a>
  399. for this release are available <a href="http://www.uclibc.org/downloads/">here</a>.
  400. <p>
  401. Have fun!
  402. <p>
  403. <p>
  404. <li> <b>12 August 2002, uClibc 0.9.14 Released</b>
  405. <br>
  406. CodePoet Consulting is slightly less pleased then usual to announce the
  407. immediate availability of uClibc 0.9.14. This is, unfortunately, a bugfix
  408. release intended to fix the couple of dumb things that slipped into the
  409. previous release. Version 0.9.13 of uClibc would fail to compile when
  410. enabling both RPC and Pthreads. There was also a problem with RPC thread
  411. local storage (but noone noticed since it didn't compile ;-). Also, the
  412. thread locking in exit(), onexit() and atexit() was broken, and wasn't
  413. actually locking anything. This release also fixes uClibc's gcc wrapper
  414. to use crtbeginS.o and crtendS.o when compiling PIC code, fixing a subtle
  415. bug (that was much less subtle on powerpc). Finally, this release includes a
  416. few minor compile warning cleanups.
  417. <p>
  418. The
  419. <a href="http://www.uclibc.org/downloads/Changelog">Changelog</a>
  420. and <a href="http://www.uclibc.org/downloads/uClibc-0.9.14.tar.bz2">source code</a>
  421. for this release are available <a href="http://www.uclibc.org/downloads/">here</a>.
  422. <p>
  423. Have fun!
  424. <p>
  425. <li> <b>12 August 2002, Native uClibc/gcc-3.1.1 toolchain released</b>
  426. <br>
  427. CodePoet Consulting (i.e. Erik) has released an updated native
  428. uClibc/gcc-3.1.1 toolchain. This toolchain builds a real gcc cross
  429. compiler (i.e. not just a wrapper) and creates executables linked vs
  430. uClibc. This toolchain has been (briefly) tested as working on x86, arm,
  431. mips, and arm7tdmi (uClinux). This toolchain provides a number of
  432. improvements over previous releases. In particular, Steven J. Hill found
  433. and fixes a number of "glibc-isms" in the libstdc++ math support which
  434. caused a number of math functions to be mapped to the non-standard named
  435. under GNU libc. This release also includes greatly improved uClinux
  436. "elf2flt" support, and it now produces working flat binaries for my
  437. uClinux/arm7tdmi system. The native uClibc/gcc-2.95 toolchain will be
  438. updated in a few days, and will include STLport which will allow that
  439. toolchain to also provide full C++ support.
  440. <p>
  441. This toolchain should make it easy for anyone to build uClibc based
  442. applications.
  443. <a href="/cgi-bin/cvsweb/toolchain/">Source code can be downloaded here</a>.
  444. Be aware that much of the needed source code will actually be downloaded on
  445. demand when you compile things. To build the toolchain, simply
  446. grab the source, edit the Makefile to select where you would like
  447. the toolchain installed, run 'make', and then go watch TV, eat
  448. dinner, or visit with your friends while it compiles. It takes
  449. about 15 minutes for Erik to compile the gcc-3.1.1 toolchain (w/C++ support)
  450. on his Athlon XP 1600 (not counting the time it takes to download
  451. source code). Your results may vary...
  452. <p>
  453. <li> <b>9 August 2002, uClibc now mirrored on kernel.org!</b>
  454. <br>
  455. uClibc is now available from the kernel.org mirrors! This should make
  456. uClibc downloads much faster. The kernel.org mirrors will have all
  457. uClibc release versions (everything but the daily snapshots).
  458. Here is a list of all the <a href="http://kernel.org/mirrors/">kernel.org mirror sites</a>.
  459. Just pick the closest mirror site, and then go to "/pub/linux/libs/uclibc/"
  460. to download uClibc.
  461. Just pick the closest mirror site, and then go to
  462. <a href="http://www.kernel.org/pub/linux/libs/uclibc/">
  463. http://www.XX.kernel.org/pub/linux/libs/uclibc/</a> to download the latest
  464. uClibc release from a nice fast system.
  465. <p>
  466. <p>
  467. <p>
  468. <li> <b>9 August 2002, uClibc 0.9.13 Released</b>
  469. <br>
  470. CodePoet Consulting is pleased to announce the immediate availability of
  471. uClibc 0.9.13. After several days of testing, this release is looking very
  472. solid. This release fixes three security vulnerabilites in previous
  473. releases. There was an off-by-one buffer overflow in the group handling
  474. code, and integer overflows in calloc() and xdr_array().
  475. <p>
  476. This release adds native shared library support for the Hitachi
  477. SuperH architecture, thanks to Stefan Allius and Edie C. Dost. A
  478. new mmap based malloc was implemented by Miles Bader. This is much
  479. smarter than the old "malloc-simple" and is now the default for
  480. mmu-less systems, where it should greatly help reduce memory
  481. fragmentation and wastage. In addition to these larger items, there
  482. has been a <em>lot</em> of work done to make uClibc a cleaner, more
  483. capable, library. Most applications now compile and run without
  484. any trouble.
  485. <p>
  486. The
  487. <a href="http://www.uclibc.org/downloads/Changelog">Changelog</a>
  488. and <a href="http://www.uclibc.org/downloads/uClibc-0.9.13.tar.bz2">source code</a>
  489. for this release are available <a href="http://www.uclibc.org/downloads/">here</a>.
  490. <p>
  491. Have fun!
  492. <p>
  493. <li> <b>11 July 2002, Native uClibc toolchains updated</b>
  494. <br>
  495. CodePoet Consulting (i.e. Erik) has released updated native
  496. uClibc/gcc-3.1 and uClibc/gcc-2.95 toolchains. These toolchains
  497. build real gcc cross compilers (i.e. not just a wrapper) and create
  498. executables linked vs uClibc. These toolchains have been tested
  499. and found working on x86, arm, and mmu-less arm. They should work
  500. (at least in theory!) for all architectures supported by uClibc.
  501. <p>
  502. These toolchains should make it easy to anyone to build uClibc based
  503. applications.
  504. <a href="/cgi-bin/cvsweb/toolchain/">Source code can be downloaded here</a>.
  505. Be aware that much of the needed source code will actually be downloaded on
  506. demand when you compile things. To build the toolchain, simply
  507. grab the source, edit the Makefile to select where you would like
  508. the toolchain installed, run 'make', and then go watch TV, eat
  509. dinner, or visit with your friends while it compiles. It takes
  510. about 15 minutes for Erik to compile the gcc-3.1 toolchain (w/C++ support)
  511. on his Athlon XP 1600 (not counting the time it takes to download
  512. source code). Your results may vary...
  513. <p>
  514. <P>
  515. <li> <b>20 June 2002, uClibc 0.9.12 Released</b>
  516. <br>
  517. CodePoet Consulting is pleased to announce the immediate availability of
  518. uClibc 0.9.12. This release adds an i960 port, an initial alpha port,
  519. fully working mips shared library support, shared library support fixes
  520. for on powerpc, and many other improvements. One very exciting new feature
  521. is nearly complete locale support, thanks to a lot of hard work by Manuel
  522. Novoa III. uClibc's locale support is <em>much</em> smaller than glibc's,
  523. though it is also slightly less flexible. This release was delayed by a
  524. month due to the arrival of a new baby at Erik's house. For those that
  525. have been anxiously waiting, this release should certainly be worth the
  526. wait. Have fun!
  527. <p>
  528. The <a href="downloads/Changelog">Changelog</a>
  529. and <a href="downloads/uClibc-0.9.12.tar.bz2">source code</a>
  530. for this release are available <a href="downloads/">here</a>.
  531. <li> <b>28 May 2002, Native uClibc/gcc-3.1 toolchain</b>
  532. <br>
  533. CodePoet Consulting has released source code and a Makefile to build a
  534. gcc-3.1 toolchain that natively targets uClibc. Additionally, the
  535. gcc-3.0.4 and gcc-2.95 toolchains have also been updated. These toolchains
  536. make it easy to build uClibc based applications.
  537. <a href="/cgi-bin/cvsweb/toolchain/">Source code can be downloaded here</a>.
  538. and is now much smaller,
  539. since much of the needed binutils and gcc source code is now downloaded on
  540. demand. To build the toolchain, simply grab the source, edit the Makefile
  541. to select where you would like the toolchain installed, and then run 'make'
  542. and wait for it to compile.
  543. <p>
  544. <p><li> <b>10 April 2002, uClibc 0.9.11 Released</b>
  545. <br>
  546. CodePoet Consulting is pleased to announce the immediate availability of
  547. uClibc 0.9.11. This release is primarily focused on fixing the issues that
  548. have turned up since the last release. Several bugs in the gcc wrapper
  549. have been fixed, allowing applications such as iproute2 and XFree86 to link properly.
  550. Large file support has been improved, and a thread locking bug was
  551. fixed that could cause s*printf calls to deadlock when threading was
  552. enabled. Several bugs were also fixed with the powerpc, h8300, m68k,
  553. sparc, and mips architecture support. Many additional applications now
  554. compile and run perfectly and have been added to the <a
  555. href="uClibc-apps.html">working applications list</a> .
  556. <p>
  557. The <a href="downloads/Changelog">Changelog</a>
  558. and <a href="downloads/uClibc-0.9.11.tar.bz2">source code</a>
  559. for this release are available <a href="downloads/">here</a>.
  560. <p>
  561. <li> <b>10 April 2002, Native uClibc/gcc-3.0.4 toolchain</b>
  562. <br>
  563. CodePoet Consulting has released source code and a Makefile
  564. to build a gcc-3.0.4 toolchain that natively targets uClibc.
  565. This brings with it full C++ support for uClibc, including the
  566. libstdc++ library. A gcc-2.95.x toolchain will also be released
  567. shortly, but is not yet ready. At this time, only source code and
  568. a Makefile for the native uClibc toolchain is being released (i.e.
  569. no binaries, sorry).
  570. <a href="/cgi-bin/cvsweb/toolchain/">Source code can be downloaded here</a>.
  571. <p>
  572. To build the toolchain, simply grab the source, edit the Makefile
  573. to select where you would like the toolchain installed. Then
  574. run 'make' and wait for it to compile. If you do not have a copy
  575. of uClibc already, it will download the latest daily snapshot.
  576. <p>
  577. <li> <b>21 March 2002, uClibc 0.9.10 Released!</b>
  578. <br>
  579. CodePoet Consulting is pleased to announce the immediate
  580. availability of uClibc 0.9.10. This release adds pthreads support
  581. (including pthreads support for mmu-less systems!). Additionally,
  582. thanks to Manuel Novoa III, we now have a completely new stdio
  583. library, which is small, standards compliant, supports pthreads,
  584. wide/narrow streams, large files, and can even operate in a
  585. low-memory unbuffered mode. Many, many bugs have been fixed and a
  586. number of additional applications now compile and run perfectly.
  587. Even with all these changes, uClibc continues to be very small.
  588. On x86, a default build of the uClibc C library is still just 168k.
  589. <p>
  590. To make things more interesting, the release also adds support for
  591. C++ constructors and destructors. To make it easy to use uClibc
  592. when developing C++ applications, this release also provides a
  593. wrapper for the GNU C++ compiler. Of course, for more complex C++
  594. applications, such as those using iostreams, a standard C++ library
  595. (libstdc++) is required. A native GNU toolchain (binutils/gcc) that
  596. provides libstdc++ linked with uClibc 0.9.10 will be released in the
  597. next couple of days, so stay tuned.
  598. <p>
  599. The <a href="downloads/Changelog">Changelog</a>
  600. and <a href="downloads/uClibc-0.9.10.tar.bz2">Source code</a>
  601. for this release are available <a href="downloads/">here</a>.
  602. <p>
  603. <p>
  604. <li> <b>4 February 2002, uClibc 0.9.9 Released!</b>
  605. <br>
  606. CodePoet Consulting is pleased to announce the immediate
  607. availability of uClibc 0.9.9. With this release,
  608. <a href="uClibc-apps.html">just about
  609. everything we have tested now compiles and runs</a>. In fact,
  610. there are now so many programs on the working application list that
  611. rather than continue to add to this list, from now on we
  612. will only be adding applications to the <em>not working list</em>. Most applications
  613. on the <em>not working list</em> either require pthreads, or require
  614. wide-character support. Work on wide-character support is
  615. well underway, and will hopefully be moving into CVS in the next week or
  616. two. Full pthreads support and rentrancy are on the TODO list
  617. and are expected to be complete in the next couple of months.
  618. <p>
  619. The <a href="downloads/Changelog">Changelog</a>
  620. and <a
  621. href="downloads/uClibc-0.9.9.tar.bz2">Source code</a>
  622. for this release are available <a href="downloads/">here</a>.
  623. <p>
  624. One final bit on news -- as some of you may have noticed, uclibc.org
  625. has been a bit overloaded and somewhat slow recently. The server should
  626. be getting colocated tomorrow, which will eliminate the speed problem.
  627. During the move, there may be some temporary disruption of service...
  628. <p>
  629. Have Fun!
  630. <p>
  631. <li> <b>22 December 2001, uClibc 0.9.8 Released!</b>
  632. <br>
  633. After many months of initial development, we are pleased to announce the
  634. release of uClibc 0.9.8. This release should be quite solid, and is very
  635. usable. This also, hopefully, marks a transition from a slow incubation
  636. phase to a more methodical release cycle. From now one, there should be
  637. approximately one release per month.
  638. <p>
  639. The source code for this release is available
  640. <a href="downloads/">here</a>.
  641. <p>
  642. <li> <b>26 November 2001, powerpc shared libraries fully working</b>
  643. <br>
  644. Dave Schleef finished off the the work needed for shared library support on
  645. powerpc. There had been a few problems remaining, and those are now squashed.
  646. So shared libs on powerpc should be working fully now.
  647. <p>
  648. <li> <b>14 November 2001, m68 compiles again, Large file support working</b>
  649. <br>
  650. About a month ago I synced the header files with glibc 2.2.4 for better
  651. C++ support and better standards compliance. I forgot to sync up m68k,
  652. sparc, powerpc, and mipsel. Dave Schleef fixed powerpc while he was fixing
  653. up the shared lib loader. I just fixed up m68k, sparc, and mipsel so they
  654. should all compile again.
  655. <p>
  656. I also finished up fixing large file support (just enable DOLFS in your
  657. Config file to enable it) and it is working just great, and greatly increases
  658. the number of glibc applications that will work "out-of-the-tarball" without
  659. needing any changes.
  660. <li> <b>12 November 2001, powerpc shared lib support</b>
  661. <br>
  662. Thanks to David Schleef, uClibc now has full shared library support
  663. on powerpc. This brings full shared library support to x86, ARM, and
  664. now powerpc. Thanks Dave!
  665. <p>
  666. <li> <b>7 November 2001, uClibc application list</b>
  667. <br>
  668. uClibc now has a <a href="uClibc-apps.html">list of applications</a>
  669. that are known to work. If you have any applications to add to the
  670. list, submissions are welcome!
  671. <p>
  672. <li> <b>18 October 2001, buildroot uClibc example system</b>
  673. <br>
  674. Those wanting an easy way to test out uClibc and give it
  675. a test drive can download and compile
  676. <a href="/cgi-bin/cvsweb/buildroot/">buildroot</a>.
  677. This is a nifty buildsystem that will automagically download and build
  678. a <a href="http://user-mode-linux.sourceforge.net/">User-Mode Linux</a>
  679. kernel, and will then download source for and compile up a fully
  680. working uClibc based root filesystem. This should make it easy for
  681. people to create their own projects. I hope that this build system
  682. will allow people to more easily use and build uClibc based systems.
  683. As an example of how nicely this works, the
  684. <a href="http://tuxscreen.net/">Tuxscreen Project</a> is using a
  685. <a href="http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/tuxscreen/buildroot-tux/">slightly adjusted variant of the buildroot system</a> to cross
  686. compile the blob bootloader, linux kernel, and a uClibc based jffs2
  687. root filesystem (busybox, tinylogin, udhcp, lrzsz, pcmcia-cs and
  688. microwindows) for ARM. Pretty cool.
  689. <p>
  690. <li> <b>11 October 2001, v850 architecture support</b>
  691. <br>
  692. Miles Bader has contributed support for the v850 architecture.
  693. <p>
  694. <li> <b>25 Spetember 2001, header files updated</b>
  695. <br>
  696. uClibc's header files are now in sync with glibc 2.2.4,
  697. allowing better standards compliance, better portibility, and
  698. better C++ support.
  699. <p>
  700. <li> <b>4 July 2001, ARM shared library support</b>
  701. <br>
  702. uClibc now has full shared library support on ARM.
  703. <p>
  704. <li> <b>9 May 2001, libm added</b>
  705. <br>
  706. uClibc now has a very complete math library.
  707. <p>
  708. <p> <li> <b>9 May 2001, ld.so added</b>
  709. <br>
  710. uClibc now has a native ld.so. It currently is only ported to work on x86,
  711. but porting to other architectures should not be too difficult.
  712. <p> <li> <b>15 March 2001, powerpc port added</b>
  713. <br>
  714. David Schleef contributed a powerpc port, which is now in CVS.
  715. <p> <li> <b>19 February 2001, SH port added</b>
  716. <br>
  717. Jean-Yves Avenard contributed an SH port. See his email
  718. with the initial patch <a href="/lists/uclibc/2001-February/000409.html">here</a>.
  719. <p> <li> <b>16 January 2001, uClibc as a shared library</b>
  720. <br>
  721. As if January 16, uClibc can now be used (at least on x86) as a shared
  722. library. See the <a href="/lists/uclibc/2001-January/000126.html">email</a>
  723. announcing this achievement.
  724. <p> <li> <b>11 January 2001, gcc wrapper added</b>
  725. <br>
  726. Manuel Novoa III has created a wrapper for gcc that makes compiling apps vs uClibc
  727. as simple as just setting "CC" to gcc-uClibc-&lt arch&gt. This even works when cross
  728. compiling! Very cool.
  729. <p> <li> <b>3 January 2001, uClibc now has a web page</b>
  730. <br>
  731. A lot of work has been going on under the hood with uClibc,
  732. so I decided to put together this webpage to let the world know
  733. that it exists and is getting to be usable.
  734. </ul>
  735. <!--#include file="footer.html" -->