Sam Merry

Results 9 comments of Sam Merry

I think this can be handled with the `cc -Wl,--wrap=add` but it looks like cbindgen allows modifying linker flags.

Ok, digging deeper and learning more. It looks like you can send linker flags using cargo. however its ignored for and an error is thrown showing the cc command with...

I think I'm on the right track. It seems there are issues with sys call wrapping and this is an attempt at addressing it. https://github.com/iovisor/bcc/commit/2da34267fcae4485f4e05a17521214749f6f0edd

It looks like that was a dead end. `zcat /proc/config.gz | grep CONFIG_ARCH_HAS_SYSCALL_WRAPPER` returns ``` CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y ``` My system is using the correct wrapper, however Its not able to see...

bpftrace kprobe seems to be able to pull the args from the same environment. ``` root@9c7a337cf9e6:/build# bpftrace -e 'kprobe:__sys_sendto { printf("sendto args: %x, %x, %d\n", arg0, arg1, arg2); }' Attaching...

If its in your system path. You can skip defining it with something like this. ``` let g:deoplete#sources#rust#racer_binary=systemlist('which racer')[0] ```

This commit enabled that feature. https://github.com/raycmorgan/Mu/commit/14eb29a48489181f41c57f18036a777afe18bd51 try using the {{==}} Its part of the mustache spec. Its under the `Set Delimiter` heading http://mustache.github.io/mustache.5.html

I would be willing to contribute add a PR if there's interest.

running into this same problem running vagrant on ubuntu 16.04 Vagrant (2.0.4) vagrant-aws (0.7.2)