mirror of https://github.com/tinygo-org/tinygo.git
wasmstm32webassemblymicrocontrollerarmavrspiwasiadafruitarduinocircuitplayground-expressgpioi2cllvmmicrobitnrf51nrf52nrf52840samd21tinygo
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
162 lines
4.8 KiB
162 lines
4.8 KiB
package builder
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"os"
|
|
"path/filepath"
|
|
"regexp"
|
|
"strings"
|
|
|
|
"github.com/tinygo-org/tinygo/compileopts"
|
|
"github.com/tinygo-org/tinygo/goenv"
|
|
)
|
|
|
|
var Musl = Library{
|
|
name: "musl",
|
|
makeHeaders: func(target, includeDir string) error {
|
|
bits := filepath.Join(includeDir, "bits")
|
|
err := os.Mkdir(bits, 0777)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
arch := compileopts.MuslArchitecture(target)
|
|
muslDir := filepath.Join(goenv.Get("TINYGOROOT"), "lib", "musl")
|
|
|
|
// Create the file alltypes.h.
|
|
f, err := os.Create(filepath.Join(bits, "alltypes.h"))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
infiles := []string{
|
|
filepath.Join(muslDir, "arch", arch, "bits", "alltypes.h.in"),
|
|
filepath.Join(muslDir, "include", "alltypes.h.in"),
|
|
}
|
|
for _, infile := range infiles {
|
|
data, err := ioutil.ReadFile(infile)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
lines := strings.Split(string(data), "\n")
|
|
for _, line := range lines {
|
|
if strings.HasPrefix(line, "TYPEDEF ") {
|
|
matches := regexp.MustCompile(`TYPEDEF (.*) ([^ ]*);`).FindStringSubmatch(line)
|
|
value := matches[1]
|
|
name := matches[2]
|
|
line = fmt.Sprintf("#if defined(__NEED_%s) && !defined(__DEFINED_%s)\ntypedef %s %s;\n#define __DEFINED_%s\n#endif\n", name, name, value, name, name)
|
|
}
|
|
if strings.HasPrefix(line, "STRUCT ") {
|
|
matches := regexp.MustCompile(`STRUCT * ([^ ]*) (.*);`).FindStringSubmatch(line)
|
|
name := matches[1]
|
|
value := matches[2]
|
|
line = fmt.Sprintf("#if defined(__NEED_struct_%s) && !defined(__DEFINED_struct_%s)\nstruct %s %s;\n#define __DEFINED_struct_%s\n#endif\n", name, name, name, value, name)
|
|
}
|
|
f.WriteString(line + "\n")
|
|
}
|
|
}
|
|
f.Close()
|
|
|
|
// Create the file syscall.h.
|
|
f, err = os.Create(filepath.Join(bits, "syscall.h"))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
data, err := ioutil.ReadFile(filepath.Join(muslDir, "arch", arch, "bits", "syscall.h.in"))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
_, err = f.Write(bytes.ReplaceAll(data, []byte("__NR_"), []byte("SYS_")))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
f.Close()
|
|
|
|
return nil
|
|
},
|
|
cflags: func(target, headerPath string) []string {
|
|
arch := compileopts.MuslArchitecture(target)
|
|
muslDir := filepath.Join(goenv.Get("TINYGOROOT"), "lib/musl")
|
|
return []string{
|
|
"-std=c99", // same as in musl
|
|
"-D_XOPEN_SOURCE=700", // same as in musl
|
|
// Musl triggers some warnings and we don't want to show any
|
|
// warnings while compiling (only errors or silence), so disable
|
|
// specific warnings that are triggered in musl.
|
|
"-Werror",
|
|
"-Wno-logical-op-parentheses",
|
|
"-Wno-bitwise-op-parentheses",
|
|
"-Wno-shift-op-parentheses",
|
|
"-Wno-ignored-attributes",
|
|
"-Wno-string-plus-int",
|
|
"-Qunused-arguments",
|
|
// Select include dirs. Don't include standard library includes
|
|
// (that would introduce host dependencies and other complications),
|
|
// but do include all the include directories expected by musl.
|
|
"-nostdlibinc",
|
|
"-I" + muslDir + "/arch/" + arch,
|
|
"-I" + muslDir + "/arch/generic",
|
|
"-I" + muslDir + "/src/include",
|
|
"-I" + muslDir + "/src/internal",
|
|
"-I" + headerPath,
|
|
"-I" + muslDir + "/include",
|
|
}
|
|
},
|
|
sourceDir: "lib/musl/src",
|
|
librarySources: func(target string) []string {
|
|
arch := compileopts.MuslArchitecture(target)
|
|
globs := []string{
|
|
"env/*.c",
|
|
"errno/*.c",
|
|
"exit/*.c",
|
|
"internal/defsysinfo.c",
|
|
"internal/libc.c",
|
|
"internal/syscall_ret.c",
|
|
"internal/vdso.c",
|
|
"malloc/*.c",
|
|
"mman/*.c",
|
|
"signal/*.c",
|
|
"stdio/*.c",
|
|
"string/*.c",
|
|
"thread/" + arch + "/*.s",
|
|
"thread/" + arch + "/*.c",
|
|
"thread/*.c",
|
|
"time/*.c",
|
|
"unistd/*.c",
|
|
}
|
|
|
|
var sources []string
|
|
seenSources := map[string]struct{}{}
|
|
basepath := goenv.Get("TINYGOROOT") + "/lib/musl/src/"
|
|
for _, pattern := range globs {
|
|
matches, err := filepath.Glob(basepath + pattern)
|
|
if err != nil {
|
|
// From the documentation:
|
|
// > Glob ignores file system errors such as I/O errors reading
|
|
// > directories. The only possible returned error is
|
|
// > ErrBadPattern, when pattern is malformed.
|
|
// So the only possible error is when the (statically defined)
|
|
// pattern is wrong. In other words, a programming bug.
|
|
panic("could not glob source dirs: " + err.Error())
|
|
}
|
|
for _, match := range matches {
|
|
relpath, err := filepath.Rel(basepath, match)
|
|
if err != nil {
|
|
// Not sure if this is even possible.
|
|
panic(err)
|
|
}
|
|
// Make sure architecture specific files override generic files.
|
|
id := strings.ReplaceAll(relpath, "/"+arch+"/", "/")
|
|
if _, ok := seenSources[id]; ok {
|
|
// Already seen this file, skipping this (generic) file.
|
|
continue
|
|
}
|
|
seenSources[id] = struct{}{}
|
|
sources = append(sources, relpath)
|
|
}
|
|
}
|
|
return sources
|
|
},
|
|
crt1Source: "../crt/crt1.c", // lib/musl/crt/crt1.c
|
|
}
|
|
|