mirror of
https://github.com/danog/gllvm.git
synced 2024-12-11 18:09:37 +01:00
20 lines
283 B
Go
20 lines
283 B
Go
package main
|
|
|
|
import (
|
|
"github.com/SRI-CSL/gllvm/shared"
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
// Parse command line
|
|
var args = os.Args
|
|
|
|
shared.Extract(args)
|
|
|
|
shared.LogInfo("Calling %v DID NOT TELL US WHAT HAPPENED\n", os.Args)
|
|
|
|
// could be more honest about our success here
|
|
os.Exit(0)
|
|
|
|
}
|