Skip to content
Snippets Groups Projects
Commit 8140816e authored by Alex Kiernan's avatar Alex Kiernan Committed by Tom Rini
Browse files

Fix Ymodem build when DEBUG and CONFIG_USE_TINY_PRINTF are selected


Attempting to build with both DEBUG and CONFIG_USE_TINY_PRINTF along
with CONFIG_SPL_YMODEM_SUPPORT fails at link time:

  common/built-in.o: In function `zm_dprintf':
  common/xyzModem.c:190: undefined reference to `vsprintf'

Disable Ymodem debug if we don't have full vsprintf support.

Signed-off-by: default avatarAlex Kiernan <alex.kiernan@gmail.com>
Reviewed-by: default avatarJoe Hershberger <joe.hershberger@ni.com>
parent 53deb24d
No related branches found
No related tags found
No related merge requests found
......@@ -171,7 +171,7 @@ parse_num (char *s, unsigned long *val, char **es, char *delim)
}
#ifdef DEBUG
#if defined(DEBUG) && !defined(CONFIG_USE_TINY_PRINTF)
/*
* Note: this debug setup works by storing the strings in a fixed buffer
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment