- Add BuildMode type with three build modes: exe, c-archive, c-shared - Restrict buildmode flag to llgo build command only (not run/install/test) - Implement build mode specific linker arguments: - c-shared: use -shared -fPIC flags - c-archive: use ar tool to create static archive - exe: default executable mode - Add normalizeOutputPath function for platform-specific file naming conventions - Generate C header files for library modes - Fix buildmode flag conflict by removing from PassArgs - Add comprehensive test coverage for all build modes - Resolve duplicate logic between defaultAppExt and normalizeOutputPath 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
46 lines
931 B
Go
46 lines
931 B
Go
package test
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/goplus/llgo/cmd/internal/base"
|
|
"github.com/goplus/llgo/cmd/internal/flags"
|
|
"github.com/goplus/llgo/internal/build"
|
|
"github.com/goplus/llgo/internal/mockable"
|
|
)
|
|
|
|
// llgo test
|
|
var Cmd = &base.Command{
|
|
UsageLine: "llgo test [-target platform] [build flags] package [arguments...]",
|
|
Short: "Compile and run Go test",
|
|
}
|
|
|
|
func init() {
|
|
Cmd.Run = runCmd
|
|
flags.AddCommonFlags(&Cmd.Flag)
|
|
flags.AddBuildFlags(&Cmd.Flag)
|
|
flags.AddEmulatorFlags(&Cmd.Flag)
|
|
flags.AddEmbeddedFlags(&Cmd.Flag)
|
|
}
|
|
|
|
func runCmd(cmd *base.Command, args []string) {
|
|
|
|
if err := cmd.Flag.Parse(args); err != nil {
|
|
return
|
|
}
|
|
|
|
conf := build.NewDefaultConf(build.ModeTest)
|
|
if err := flags.UpdateConfig(conf); err != nil {
|
|
fmt.Fprintln(os.Stderr, err)
|
|
mockable.Exit(1)
|
|
}
|
|
|
|
args = cmd.Flag.Args()
|
|
_, err := build.Do(args, conf)
|
|
if err != nil {
|
|
fmt.Fprintln(os.Stderr, err)
|
|
mockable.Exit(1)
|
|
}
|
|
}
|