Michael Gehring

Results 15 comments of Michael Gehring

Personally I'd just drop result_str completely. It's not too hard to call to_hex() yourself. Having input_str() that does .as_bytes() and a result_str() that does to_hex() is asymmetric and confusing. Renaming...

I'd like to throw in another idea which makes implementing both options viable: Allow custom builtins. API could look something like: ``` type Builtin func(ctxt context.Context, argv []string) error func...

> > > func (r *Runner) SetBuiltin(name string, handler Builtin) (old Builtin) > > I'm starting to think that the current `ModuleExec` API is enough to do what you want...

That's one of the reasons the multicall binary exists. As for individual binaries, I'm not sure what we can do except trying to reduce the number of dependencies.

@hexel I did :) Unfortunately it's linux only.

Maybe ``` $ cd $GOPATH/src/github.com/agl/pond $ git describe v0.1.1-7-gbce6e0d ```

I can't help with this specific tpm error. But if you want to compile a version without tpm support: ``` $ go get -tags notpm github.com/agl/pond/client ```

> As I have not found a way to apply two build tags at the same time, one will have to edit some go files. `go build -tags "nogui notpm"`...

> @ebfe Thanks for your suggestion. It actually seems to work when used directly > with go (compiling for the current host). Unfortunately when cross-compiling, I > run > >...