diff options
author | Drashna Jaelre <drashna@live.com> | 2018-03-25 16:44:17 -0700 |
---|---|---|
committer | skullydazed <skullydazed@users.noreply.github.com> | 2018-03-25 16:44:17 -0700 |
commit | 07b90db89758c42f7aacf52d93446b9407b87a98 (patch) | |
tree | 29392050d8c473eb0c6874977477ba32a9176f3b /docs/faq_build.md | |
parent | 0c665696d7b498bd278d05eed3b52c1fac89ff29 (diff) | |
download | qmk_firmware-07b90db89758c42f7aacf52d93446b9407b87a98.tar.gz |
Fixes and updates to docs (#2611)
* Fix advanced keycode headers
* Add caveat for OSM over Remote Desktop
* Hopefully add better anchors to docs
* Add Action code list reference
* Formatting of RGB Underglow doc
* Add brew update issue on macOS
* Revert formatting
* Revert RGB doc formatting
* Make Config Options doc's sections linkable
Diffstat (limited to 'docs/faq_build.md')
-rw-r--r-- | docs/faq_build.md | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/faq_build.md b/docs/faq_build.md index ff409f9c6..2d1b91b60 100644 --- a/docs/faq_build.md +++ b/docs/faq_build.md @@ -88,3 +88,19 @@ Note that Teensy2.0++ bootloader size is 2048byte. Some Makefiles may have wrong # USBaspLoader 2048 OPT_DEFS += -DBOOTLOADER_SIZE=2048 ``` + +## `avr-gcc: internal compiler error: Abort trap: 6 (program cc1)` on MacOS +This is an issue with updating on brew, causing symlinks that avr-gcc depend on getting mangled. + +The solution is to remove and reinstall all affected modules. + +``` +brew rm avr-gcc +brew rm dfu-programmer +brew rm gcc-arm-none-eabi +brew rm avrdude +brew install avr-gcc +brew install dfu-programmer +brew install gcc-arm-none-eabi +brew install avrdude +``` |