Steve Willson
Steve Willson
I attempted to build: https://github.com/bkerler/gr-bluetooth/tree/maint-3.10 , but was unsuccessful. Ubuntu 22.04LTS Python: 3.10.4 GCC: 11.2.0 Steps: - `git clone [email protected]:bkerler/gr-bluetooth.git` - `cd gr-bluetooth` - `mkdir build` - `cd build` -...
Put a `$` before `{MINGW_PREFIX}`. It should be `${MINGW_PREFIX}`. Full line: `${MINGW_PREFIX}/bin/cmake ../ -G "MSYS Makefiles" -DLIBUSB_INCLUDE_DIR=/lib -DFFTW_LIBRARIES=/lib` When I start MSYS2 in "MinGW x64 mode" from the Windows Start...
I'm not sure about using cygwin to install the libusb files. I am using MSYS2 and used `pacman` to install the package `mingw-w64-x86_64-libusb` to provide the libusb files. Here is...
See comment in [#1107 ](https://github.com/greatscottgadgets/hackrf/issues/1107#issuecomment-1172444608), make sure there is a `$` in `${MINGW_PREFIX}`. Check the contents of the `$MINGW_PREFIX` environment variable, should be `/mingw64`. The cmake in `/mingw64/bin/cmake` supports the...
The parameters `distilled` and `pretrained_cfg` are in the `**kwargs` dict but should not be when it is passed to `VisionTransformer`'s `init` function. I added the following right before the `super().__init__(*args,...