8000 Update eboot to build with C17, not C99 standard by earlephilhower · Pull Request #7837 · esp8266/Arduino · GitHub
[go: up one dir, main page]

Skip to content

Update eboot to build with C17, not C99 standard #7837

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

Merged
merged 1 commit into from
Jan 24, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update eboot to build with C17, not C99 standard
No functional change.  Make the main core and eboot build using the
same C standard version (gnu17).
  • Loading branch information
8000
earlephilhower committed Jan 24, 2021
commit 2765ee62593712a10285ab78a8982aa1474ebb51
2 changes: 1 addition & 1 deletion bootloaders/eboot/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ OBJDUMP := $(XTENSA_TOOLCHAIN)xtensa-lx106-elf-objdump

INC += -I../../tools/sdk/include -I../../tools/sdk/uzlib/src

CFLAGS += -std=gnu99
CFLAGS += -std=gnu17

CFLAGS += -Os -fcommon -g -Wall -Wpointer-arith -Wno-implicit-function-declaration -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mno-text-section-literals -ffunction-sections -fdata-sections -free -fipa-pta

Expand Down
Binary file modified bootloaders/eboot/eboot.elf
Binary file not shown.
0