feat: support libc version

This commit is contained in:
Haolan
2025-09-04 19:08:48 +08:00
parent b1d95bb73c
commit 95bd495d7b
10 changed files with 503 additions and 135 deletions

View File

@@ -9,34 +9,68 @@ import (
"github.com/goplus/llgo/internal/crosscompile/compile/rtlib"
)
// for testing, in testing env, we use fake path, it will cause downloading failure
var needSkipDownload = false
// GetCompileConfigByName retrieves libc compilation configuration by name
// Returns compilation file lists and corresponding cflags
func getLibcCompileConfigByName(baseDir, libcName, target, mcpu string) (*compile.CompileConfig, error) {
func getLibcCompileConfigByName(baseDir, libcName, target, mcpu string) (outputDir string, cfg compile.CompileConfig, err error) {
if libcName == "" {
return nil, fmt.Errorf("libc name cannot be empty")
err = fmt.Errorf("libc name cannot be empty")
return
}
libcDir := filepath.Join(baseDir, libcName)
var libcDir string
var config compile.LibConfig
var compileConfig compile.CompileConfig
switch libcName {
case "picolibc":
return libc.GetPicolibcConfig(libcDir, target), nil
config = libc.GetPicolibcConfig()
libcDir = filepath.Join(baseDir, config.String())
compileConfig = libc.GetPicolibcCompileConfig(libcDir, target)
case "newlib-esp32":
return libc.GetNewlibESP32Config(libcDir, target, mcpu), nil
config = libc.GetNewlibESP32Config()
libcDir = filepath.Join(baseDir, config.String())
compileConfig = libc.GetNewlibESP32CompileConfig(libcDir, target, mcpu)
default:
return nil, fmt.Errorf("unsupported libc: %s", libcName)
err = fmt.Errorf("unsupported libc: %s", libcName)
return
}
if needSkipDownload {
return libcDir, compileConfig, err
}
if err = checkDownloadAndExtractLib(config.Url, libcDir, config.ArchiveSrcDir); err != nil {
return
}
return libcDir, compileConfig, nil
}
func getRTCompileConfigByName(baseDir, rtName, target string) (*compile.CompileConfig, error) {
func getRTCompileConfigByName(baseDir, rtName, target string) (outputDir string, cfg compile.CompileConfig, err error) {
if rtName == "" {
return nil, fmt.Errorf("rt name cannot be empty")
err = fmt.Errorf("rt name cannot be empty")
return
}
rtDir := filepath.Join(baseDir, rtName)
var rtDir string
var config compile.LibConfig
var compileConfig compile.CompileConfig
switch rtName {
case "compiler-rt":
return rtlib.GetCompilerRTConfig(rtDir, target), nil
config = rtlib.GetCompilerRTConfig()
rtDir = filepath.Join(baseDir, config.String())
compileConfig = rtlib.GetCompilerRTCompileConfig(rtDir, target)
default:
return nil, fmt.Errorf("unsupported rt: %s", rtName)
err = fmt.Errorf("unsupported rt: %s", rtName)
}
if needSkipDownload {
return rtDir, compileConfig, err
}
if err = checkDownloadAndExtractLib(config.Url, rtDir, config.ArchiveSrcDir); err != nil {
return
}
return rtDir, compileConfig, nil
}