hyperlight-libc 0.16.0

This crate provides picolibc for Hyperlight guests. It builds the picolibc library and generates bindings to the libc types and functions.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash

cat head-native

for build in minsize release; do
    for arch in native; do
	echo "  $build-$arch:"
	cat variants
        cat <<EOF
        test: [
          "./.github/do-native-math",
        ]
EOF
	cat steps-head
	cat steps-$build
    done
done