Hello,
I am trying to build QMK firmware for a kyboard and I was following this guide.
For FreeBSD it says to run the command
. However I can't find any packaged related to QMK. I've tried
and it's returns nothing.
So I tried installing Python 3, running
and adding set PATH = ($PATH\:$HOME/.local/bin) to ~/.cshrc.
However even though I had added ~/.local/bin to my PATH variable qmk wasn't found. So I use used it's full path instead and ran
, which returned a number of errors :'/. I decided to go ahead and try to compile it anyway using
and it complained about not being able to find qmk again. So I updated the Make file to point to qmk and then ran the command again. But to my dismay it want's avr-gcc. But I can't find anything related to it with a pkg search (apart from the C libraries, but their not much use without the actual compiler!)
Anyway I really want to compile QMK! I already tried doing it under Cygwin on M$ Windows 10 and ran into a problem with that too .
So if anyone has any suggestions or knows what I should do I would very much appreciate it! I thought about trying to compile avr-gcc but I'm not exactly sure where to get an official copy of it or if it would work under FreeBSD. Maybe I could try and use the Linux compatibily layer to compile QMK using that? I don't want to have to install Linux just do do this. I SHOULD be able to do it using FreeBSD!
I am trying to build QMK firmware for a kyboard and I was following this guide.
For FreeBSD it says to run the command
Code:
pkg install -g "py*-qmk"
Code:
pkg search qmk
So I tried installing Python 3, running
Code:
python3 -m pip install --user qmk
However even though I had added ~/.local/bin to my PATH variable qmk wasn't found. So I use used it's full path instead and ran
Code:
/home/crayxmp/.local/bin/qmk doctor
Code:
/home/crayxmp/.local/bin/qmk compile --keyboard converter/modelm101 --keymap default
Anyway I really want to compile QMK! I already tried doing it under Cygwin on M$ Windows 10 and ran into a problem with that too .
So if anyone has any suggestions or knows what I should do I would very much appreciate it! I thought about trying to compile avr-gcc but I'm not exactly sure where to get an official copy of it or if it would work under FreeBSD. Maybe I could try and use the Linux compatibily layer to compile QMK using that? I don't want to have to install Linux just do do this. I SHOULD be able to do it using FreeBSD!