NxWidgets updates from Petteri Aimonen; buildroot GDB build fix from Ken Bannister
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5592 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
parent
1b94639432
commit
a3df67ef8a
@ -533,6 +533,12 @@ NuttX Buildroot Toolchain
|
|||||||
an ARM Cortex-M3/4, you will need to set CONFIG_ARMV7M_OABI_TOOLCHAIN
|
an ARM Cortex-M3/4, you will need to set CONFIG_ARMV7M_OABI_TOOLCHAIN
|
||||||
in the .config file in order to pick the right tool prefix.
|
in the .config file in order to pick the right tool prefix.
|
||||||
|
|
||||||
|
If the make system ever picks the wrong prefix for your toolchain, you
|
||||||
|
can always specify the prefix on the command to override the default
|
||||||
|
like:
|
||||||
|
|
||||||
|
make CROSSDEV=arm-nuttx-elf
|
||||||
|
|
||||||
SHELLS
|
SHELLS
|
||||||
^^^^^^
|
^^^^^^
|
||||||
|
|
||||||
|
@ -150,7 +150,7 @@ char *fgets(FAR char *buf, int buflen, FILE *stream)
|
|||||||
if (ch == '\n')
|
if (ch == '\n')
|
||||||
#elif defined(CONFIG_EOL_IS_CR)
|
#elif defined(CONFIG_EOL_IS_CR)
|
||||||
if (ch == '\r')
|
if (ch == '\r')
|
||||||
#else /* elif CONFIG_EOL_IS_EITHER_CRLF */
|
#else /* elif defined(CONFIG_EOL_IS_EITHER_CRLF) */
|
||||||
if (ch == '\n' || ch == '\r')
|
if (ch == '\n' || ch == '\r')
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user