Skip to content
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

SDCC Compiler Version >=4.03 #67

Open
aabouman opened this issue Sep 14, 2021 · 3 comments
Open

SDCC Compiler Version >=4.03 #67

aabouman opened this issue Sep 14, 2021 · 3 comments

Comments

@aabouman
Copy link

make install fails with newer versions of SDCC.
From the page 11 of the SDCC documentation, "In 4.0.3, _itoa, _uitoa, _ltoa, _ultoa were renamed to __itoa, __uitoa, __ltoa, __ultoa."

@aabouman
Copy link
Author

For those having similar issues replacing lines 165-169 of printfs.c with

if (unsigned_flag) {
	__ultoa(val, buffer, radix);
} else {
	__ltoa(val, buffer, radix);
}

did the trick for me

@booo
Copy link

booo commented Nov 26, 2021

Can you create a pull request for this?

@kaklik
Copy link
Contributor

kaklik commented Nov 6, 2022

That seems to be resolved and merged. Close it, please.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants