Jacob Rosenthal
Jacob Rosenthal
In webpack you can do exclude as well as include paths. My use case is for me to be able to use a package but alias anyone else who attempts...
Can you PR? I havent used this in a while, Ill accept a pr and try to spin a new version
@fallberg I don't see the same thing on osx 10.12, sublimetext 3126. Can you PR and confirm your versions? Also can anyone else report in?
Also of note, Im not sure how you enabled -wall or -wunused-variable, and you seem to get column numbers, and I dont on osx ``` void setup() { asdf }...
Forgive the dumb question, but why does target have to be specified separately from .cargo/config
This may or may not be the place or this, but Im asking why rls can't harvest the target from the existing .cargo/config instead of me having to duplicate which...
Cross compilers, especially embedded, already hardcode our target in once place, .cargo/config It tends to look like this ``` [build] target = "armv7-unknown-linux-gnueabihf" [target.arm-unknown-linux-gnueabihf] linker = "arm-linux-gnueabihf-gcc" ``` Its disappointing...
but if it already is... On Wed, Nov 13, 2019 at 11:29 AM Christopher McClellan < [email protected]> wrote: > It's not desirable to *have* to hard code the target. >...
Linux/OSX normal ioctl setup, and custom baud on linux ``` serinfo.flags &= ~ASYNC_SPD_MASK; serinfo.flags |= ASYNC_SPD_CUST; ioctl(fd, TIOCSSERIAL, &serinfo); ioctl(fd, TIOCGSERIAL, &serinfo); ``` osx we use a different ioctl call...
Things I wish I knew: You can manually search for assembly that looks like a syscall operation. On my platform syscalls are called with the `svc` op, though yours might...