Alexandre Maloteaux

Results 32 comments of Alexandre Maloteaux

This is extremely helpful , thanks a lot for this doc

hi i m using nvim with nvim-lsp, nvim-cmp,nvim-jdtls but without ale i tried to reroduce the suggestions here but i never manage to have completion on android classes. Is it...

is there any plan to merge this ? this pattern is pretty common on various arm32 binaries i saw and this patch just works.

i think the issue is there when both the loader and the plugin use a same local import for instance : myproject/cmd/loader/main.go myproject/plugin/main.go myproject/common/tools if both main.go import tools then...

Im using rev c9bc7bac3b3ce17ce57667a863ced8651f204aec as im facing #82 too but the issue triggers just with garble -literals main.go and garble -literals --buildmode=plugin plugin/main.go i think. It fails at this place...

When the main binary is loading the plugin there is a check between all imports main binary hash and plugin hash. if one of the hash is different then you...

> I don't get this. Each garble build should be entirely reproducible, so a specific package should always be built exactly the same and with the same salt. Unless you...

hi plugins are working actually almost out of the box, i tested again today and all i had to do is to 1. add _ "runtime/cgo" to the import 2....

> I'm surprised this is the case; what fails without the underscore import? `plugin` does import `runtime/cgo`, but I don't think that should matter. i had a small test case...

this should work : > var _ = reflect.TypeOf(StatUser{}) > type StatUser struct { > Id int64 `gorm:"primaryKey"` > User_Id int64 > } > func (StatUser) TableName() string { >...