-
-
Notifications
You must be signed in to change notification settings - Fork 19.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Build error using mks tinybee board #27553
Comments
Hello, Following previous request, I have by dichotomie try to find a point of failure:
For the moment, I don't find reason, look CC is c compiler ? Thanks for your help Regards |
seem to be windows specific, no issues on linux, but I can replicate on windows |
In f2d585a a section was added # Skip '*-elf-g++' (crosstool-NG)
if not gpath.stem.endswith('-elf-g++'):
gccpath = str(gpath.resolve())
break But the compiler for esp32 is a So it cannot find the the compiler and default to CC and fails. @thinkyhead is there a more exact string you can look for to exclude this crosstool-NG |
ok this looks like a good work around to me. change |
the code should end up looking like # Skip '*-elf-g++' (crosstool-NG)
if not "xtensa32" not in str(gpath) and gpath.stem.endswith('-elf-g++'):
gccpath = str(gpath.resolve())
break |
I mad a mistake on the additions to the code. This fix DOES work. Thank you so very much for your time and effort |
A PR has been created to fix this. |
Did you test the latest
bugfix-2.1.x
code?Yes, and the problem still exists.
Bug Description
Hello,
after my MKS skr 1.4 died, I have order a tinybee motherboard.
Whan I change the motherboard in Marlin, I have a buld error
//#define MOTHERBOARD BOARD_RAMPS_14_EFB
#define MOTHERBOARD BOARD_MKS_TINYBEE
PS C:\Users\mat\Documents\matthieu\3D\orthur\m2.1.bugfix.1\Marlin> platformio run --silent -e mks_tinybee
'"CC"' n'est pas reconnu en tant que commande interne
ou externe, un programme ex\x82cutable ou un fichier de commandes.
Error: Failed to parse Marlin features. See previous error messages.
Many thanks if you can help me to use my new tinybee board
Marlin.zip
Bug Timeline
new bug
Expected behavior
Buld should be ok and deliver a firmware.bin
Actual behavior
error when building
Steps to Reproduce
create folder ./marlin.2.1.bugfix
git clone https://github.com/MarlinFirmware/Marlin.git
open vscode
show ABM Panel
Version of Marlin Firmware
[cron] Bump distribution date (2024-11-28)
Printer model
ortur
Electronics
tinybee
LCD/Controller
REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER
Other add-ons
2209
Bed Leveling
UBL Bilinear mesh
Your Slicer
Cura
Host Software
OctoPrint
Don't forget to include
Configuration.h
andConfiguration_adv.h
.Additional information & file uploads
I have done the same steap with https://github.com/makerbase-mks/MKS-TinyBee/tree/main
and I can build firmwre (but this is version 2.0)
The text was updated successfully, but these errors were encountered: