package compiler

import "github.com/azin-lang/Azin/internal/compiler"

Index

Functions

func Compile

func Compile(files []*source.File, outputPath string, opts Options) error

Compile compiles the given source files to a C executable.

Types

type Options

type Options struct {
	Output       string
	EmitC        bool
	Optimization string
	Debug        bool
	LibPaths     []string
}