dmakarov
dmakarov
The extra dependencies are needed to reduce the amount of redundant rebuilds when crates in `programs/bpf/rust/` are built in our CI. Please, do not remove them only because they seem...
See #26369
if you rebase and buildkite/solana/checks pass, then it should be ok to remove the dependencies. However, it looks like your changes cause a regression in build redundancy ``` Regression of...
Which option would you like to pass to build-bpf? The two commands have matching sets of command line options, so that if you use an option on the cargo-test-bpf command...
This happens to me on macOS 10.15.5: GNU Emacs 26.3 (build 1, x86_64-apple-darwin18.2.0, NS appkit-1671.20 Version 10.14.3 (Build 18D109)) of 2019-09-02. I don't have any customizations for lsp-ui or posframe...
This may be a macOS cocoa issue, but the previous non-posframe implementation did work.
A quick note: the output `./main4() [0x401ddc]...` is what returned by a call to `backtrace_symbols()` in `DefaultTraceInfo.opApply()` in `core.runtime.` The symbols are in the executable `main4`, but for some reason...
I found the reason for the problem. It's the missing -rdynamic command line option when linking the executable. ``` charlie@fusion:~$ /usr/bin/gcc app.o -o app -rdynamic -L/opt/ldc/lib -lphobos2-ldc-debug -ldruntime-ldc-debug -lrt -Wl,--gc-sections...
Please, review the fix in PR https://github.com/ldc-developers/ldc/pull/864
I moved the commit that resolved this issue to a separate branch in my fork. I do not want to make a PR against master branch because the change breaks...