We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I tried to build this under Linux Ubuntu 20.04.1 with SDCC 3.8.0 and got :
barcode.c:11: syntax error: token -> '0b00110011011' ; column 1
Fixed it by setting --std-c2x to --std-sdcc2x in file : cpu/8051/make.mk
original : FLAGS += -mmcs51 --std-c2x --opt-code-size --peep-file cpu/8051/peep.def --fomit-frame-pointer
new : FLAGS += -mmcs51 --std-sdcc2x --opt-code-size --peep-file cpu/8051/peep.def --fomit-frame-pointer
The text was updated successfully, but these errors were encountered:
Thanks a lot ! This will help a lot of people
Sorry, something went wrong.
No branches or pull requests
I tried to build this under Linux Ubuntu 20.04.1 with SDCC 3.8.0 and got :
barcode.c:11: syntax error: token -> '0b00110011011' ; column 1
Fixed it by setting --std-c2x to --std-sdcc2x in file : cpu/8051/make.mk
original : FLAGS += -mmcs51 --std-c2x --opt-code-size --peep-file cpu/8051/peep.def --fomit-frame-pointer
new : FLAGS += -mmcs51 --std-sdcc2x --opt-code-size --peep-file cpu/8051/peep.def --fomit-frame-pointer
The text was updated successfully, but these errors were encountered: