-
TLDR; The issue emanates from the following:
```
$ cat main.cc
#include
int main() { std::printf("%ld\n", __cplusplus); }
$ CC main.cc && ./a.out
201402
$ CC -xhip main.cc && ./a.out
20110…
-
I am compiling a test model with the following TVMC command:
```
python -m tvm.driver.tvmc compile test.onnx --verbose --target='c -keys=cpu' --runtime=crt --runtime-crt-system-lib=1 --executor=aot…
-
Building `ceres` alone is generally no problem, but when features like `ceres[lapack]` are required, things get more compilcated.
It can be built in the latest vcpkg version for the triplet `x64-wind…
-
| | |
|--------------------|----|
| Bugzilla Link | [PR49381](https://bugs.llvm.org/show_bug.cgi?id=49381) |
| Status | NEW |
| Importance | P enhancemen…
-
There are 3 occurrences of 'skip_permissions_denied' within the specification (notice the extra 's').
These spelling mistakes should be fixed.
-
I'm using Ubuntu 18.04, ROS Melodic. I have GTX 960M.
I have successfully followed the instructions on how to build spencer-project from source. I can run `roslaunch spencer_people_tracking_launch tr…
-
-
This code can be updated to use ` __cpp_lib_uncaught_exceptions ` and ` __cpp_lib_void_t` feature test macros:
```
#ifndef HAS_UNCAUGHT_EXCEPTIONS
# if __cplusplus > 201703 || (defined(_MSVC_LANG)…
-
When using a C API from C++, clang-cl warns because of missing sentinels, even when `NULL` is used as sentinel:
clang-cl : 17.0.1
ucrt: 10.0.22000.0
visula studio build tools 2022: 17.7.4
msvc: 1…
-
I think bindgen does this for any packed struct that doesn't contain a 0-sized array.
### Input C/C++ Header
```C
// test.h
#ifdef __cplusplus
extern "C" {
#endif
typedef struct {
…