Add missing test-aarch64.ld file

Required to be able to build tests

Signed-off-by: Keith Packard <keithp@keithp.com>
1 file changed
tree: e27ed56a34334f6f6305b219d0e6a255a46eacaf
  1. .github/
  2. doc/
  3. dummyhost/
  4. hello-world/
  5. newlib/
  6. picocrt/
  7. semihost/
  8. test/
  9. .drone.yml
  10. .gitattributes
  11. .gitignore
  12. CODE_OF_CONDUCT.md
  13. CONTRIBUTING.md
  14. COPYING.GPL2
  15. COPYING.NEWLIB
  16. COPYING.picolibc
  17. cross-aarch64-linux-gnu.txt
  18. cross-arm-none-eabi.txt
  19. cross-i386-linux-gnu.txt
  20. cross-riscv64-unknown-elf.txt
  21. cross-xtensa-esp32-elf.txt
  22. cross-xtensa-lx106-elf.txt
  23. cross.tmpl
  24. do-aarch64-configure
  25. do-arm-configure
  26. do-arm-configure-sysroot
  27. do-big-configure
  28. do-esp32-configure
  29. do-lx106-configure
  30. do-native-configure
  31. do-riscv-configure
  32. do-riscv-configure-sysroot
  33. do-tiny-configure
  34. do-x86-configure
  35. find-copyright
  36. make-copyrights
  37. make-target
  38. meson.build
  39. meson_options.txt
  40. picolibc.ld
  41. picolibc.specs.in
  42. README.md
  43. run-aarch64
  44. run-arm
  45. run-riscv
  46. test-aarch64.ld
  47. test-arm.ld
  48. test-riscv.ld
  49. test-riscv32.ld
  50. test-riscv64.ld
README.md

PicoLibc

Copyright © 2018,2019 Keith Packard

PicoLibc is library offering standard C library APIs that targets small embedded systems with limited RAM. PicoLibc was formed by blending code from Newlib and AVR Libc.

License

Picolibc source comes from a variety of places and has a huge variety of copyright holders and license texts. While much of the code comes from newlib, none of the GPL-related bits used to build the library are left in the repository, so all of the source code uses BSD-like licenses, a mixture of 2- and 3- clause BSD itself and a variety of other (mostly older) licenses with similar terms.

There are two files used for testing printf, test/printf-tests.c and test/testcases.c which are licensed under the GPL version 2 or later.

The file COPYING.picolibc contains all of the current copyright and license information in the Debian standard machine-readable format. It was generated using the make-copyrights and find-copyright scripts. There are currently 75 distinct licenses: 9 versions of the 2-clause BSD license, 35 versions of the 3-clause BSD license, and 31 other licenses.

Supported Architectures

Picolibc inherited code for a lot of architectures from newlib, but at this point only has code to build for the following targets:

  • ARM (32-bit only)
  • i386 (Linux hosted, for testing)
  • RISC-V (both 32- and 64- bit)
  • x86_64 (Linux hosted, for testing)
  • PowerPC
  • ESP8266 (xtensa-lx106-elf)

Supporting architectures that already have newlib code requires:

  1. newlib/libc/machine/architecture/meson.build to build any architecture-specific libc bits
  2. newlib/libm/machine/architecture/meson.build to build any architecture-specific libm bits
  3. picocrt/machine/architecture source code and build bits if you need custom startup code for the architecture.
  4. cross-gcc-triple.txt to configure the meson cross-compilation mechanism to use the right tools
  5. do-architecture-configure to make testing the cross-compilation setup easier.

Relation to newlib

Picolibc is mostly built from pieces of newlib, and retains the directory structure of that project. While there have been a lot of changes in the build system and per-thread data storage, the bulk of the source code remains unchanged.

To keep picolibc and newlib code in sync, newlib changes will be regularly incorporated. To ease integration of these changes into picolibc, some care needs to be taken while editing the code:

  • Files should not be renamed.
  • Fixes that also benefit users of newlib should also be sent to the newlib project
  • Changes, where possible, should be made in a way compatible with newlib design. For example, instead of using ‘errno’ (which is valid in picolibc), use __errno_r(r), even when ‘r’ is not defined in the local context.

The bulk of newlib changes over the last several years have been in areas unrelated to the code used by picolibc, so keeping things in sync has not been difficult so far.

Releases

Picolibc version 1.4.1

This release contains an important TLS fix for ARM along with a few minor compatibility fixes

  1. Make __aeabi_read_tp respect ARM ABI register requirements to avoid clobbering register contents during TLS variable use.

  2. Use cpu_family instead of cpu in meson config, which is ‘more correct’ when building for a single cpu instead of multilib.

  3. Make arm sample interrupt vector work with clang

  4. Use __inline instead of inline in published headers to allow compiling with -ansi

  5. Make ‘naked’ RISC-V _start function contain only asm statements as required by clang (and recommended by gcc).

  6. Use -msave-restore in sample RISC-V cross-compile configuration. This saves text space.

Picolibc version 1.4

This release was focused on cleaning up the copyright and license information.

  1. Copyright information should now be present in every source file.

  2. License information, where it could be inferred from the repository, was added to many files.

  3. 4-clause BSD licenses were changed (with permission) to 3-clause

  4. Fix RISC-V ieeefp.h exception bits

  5. Merge past newlib 3.2.0

  6. Add PICOLIBC_TLS preprocessor define when the library has TLS support

Picolibc version 1.3

This release now includes tests, and fixes bugs found by them.

  1. ESP8266 support added, thanks to Jonathan McDowell.

  2. Numerous test cases from newlib have been fixed, and precision requirements adjusted so that the library now passes its own test suite on x86, RISC-V and ARM.

  3. String/number conversion bug fixes. This includes fcvt/ecvt/gcvt shared with newlib and tinystdio printf/scanf

  4. A few RISC-V ABI fixes, including setting the TLS base correctly, compiling with -mcmodel=medany, and enabling the FPU for libraries built to use it.

  5. Semihosting updates, including adding unlink, kill and getpid (which are used by some tests).

Picolibc version 1.2

This release includes important fixes in picolibc.ld and more semihosting support.

  1. File I/O and clock support for semihosting. This enables fopen/fdopen support in tinystdio along with an API to fetch a real time clock value.

  2. Fix picolibc.ld to not attempt to use redefined symbols for memory space definitions. These redefinitions would fail and the default values be used for system memory definitions. Instead, just use the ? : operators each place the values are needed. Linker scripts continue to mystify.

  3. Expose library definitions in ‘picolibc.h’, instead of ‘newlib.h’ and ‘_newlib_version.h’

  4. Define HAVE_SEMIHOST when semihosting support is available. This lets the ‘hello-world’ example do some semihost specific things.

Picolibc version 1.1

A minor update from 1.0, this release includes:

  1. semihost support. This adds console I/O and exit(3) support on ARM and RISC-V hosts using the standard semihosting interfaces.

  2. Posix I/O support in tinystdio. When -Dposix-io=true is included in the meson command line (which is the default), tinystdio adds support for fopen and fdopen by using malloc, open, close, read, write and lseek. If -Dposix-console=true is also passed to meson, then picolibc will direct stdin/stdout/stderr to the posix standard file descriptors (0, 1, 2).

  3. Merge recent upstream newlib code. This brings picolibc up to date with current newlib sources.

  4. Hello world example. This uses a simple Makefile to demonstrate how to us picolibc when installed for ARM and RISC-V embedded processors. The resulting executables can be run under qemu.

  5. Remove newlib/libm/mathfp directory. This experimental code never worked correctly anyways.

Picolibc version 1.0

This is the first release of picolibc. Major changes from newlib include:

  1. Remove all non-BSD licensed code. None of it was used in building the embedded library, and removing it greatly simplifies the license situation.

  2. Move thread-local values to native TLS mechanism

  3. Add smaller stdio from avr-libc, which is enabled by default

  4. Switch build system to meson. This has two notable benefits; the first is that building the library is much faster, the second is that it isolates build system changes from newlib making merging of newlib changes much easier.

  5. Add simple startup code. This can be used in environments that don't have complicated requirements, allowing small applications to avoid needing to figure this out.

Documentation