Sören Tempel
Sören Tempel
* Set language standard via `CMAKE_C_STANDARD` and `CMAKE_CXX_STANDARD` standard * Use new [`add_compile_options`](https://cmake.org/cmake/help/latest/command/add_compile_options.html) and [`add_compile_definitions`](https://cmake.org/cmake/help/latest/command/add_compile_definitions.html) * Instead of modifying both C and C++ flags directly * Bump required CMake version...
It seems like the following options have been added to `bemenu(1)` with the 0.6.4 release: * `-c`: a42fa97a49c4bb2ec20111b439179992a0e31f34 * `--ch`: 0589962d1cc06e9bb63b5ef25aa812d6eba4a3d4 * `-s`: 9b2a2cabf2f9865a6a9f278c09187bdf0ab6e8af * `-M`: bddeea05b6de09ec1c48e6bef2b05428e442b982 Unfortunately, these options...
Currently, the API provided by the library provides the caller with no additional error information. Provided functions only allow the caller to determine that an error occurred (e.g. through specific...
From [RFC 2812](https://tools.ietf.org/html/rfc2812#section-2.3): > IRC messages are always lines of characters terminated with a CR-LF (Carriage Return - Line Feed) pair, and these messages SHALL NOT exceed 512 characters in...
The xorBlock function does not have support for RISC-V and thus software depending on crypto e.g. [gocryptfs](https://github.com/rfjakob/gocryptfs) does not compile on RISC-V: https://github.com/jacobsa/crypto/blob/e7a907a814d5c104f87bf371bd4f27a96ed310f9/cmac/hash_64bit.go#L16 Unfortunately, unaligned loads (which are used by...
Currently, the `parse-commit` procedure from `(chibi parse)` unconditionally uses a failure continuation which simply returns `#f`, i.e. `(lambda (s i r) #f)`: https://github.com/ashinn/chibi-scheme/blob/5b8e196e0f9f6a65ff194aa6a64ffa88858e1be2/lib/chibi/parse/parse.scm#L524-L526 I encountered this while working on a...
### Contribution description Currently, asymcute matches an MQTT-SN request to its acknowledgement using *only* the MsgId header. However, I strongly believe this to be insufficient as asymcute would thus also...
### Contribution description As per Section 5.2.1 of the MQTT-SN specification, the MQTT-SN length header is either 1- or 3-octet long. If it is 3-octet long then the first octet...
### Contribution description This PR imports a slightly modified version of the coverage generation code from [Zephyr](https:/zephyrproject.org/) and allows generating coverage information on real hardware (not just native) for GNU...
Hi, just wanted to let you know that tty-share does not build on riscv64 because you are using your own fork of [creack/pty](https://github.com/creack/pty) which does not support riscv64 yet. Have...