mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-09 05:05:20 -05:00
sbtools: Change crypto wrapper implementation to C.
There's nothing C++ left. Change-Id: I98d8406215287c02b56029ed7c0e2b0e645bbcf1
This commit is contained in:
parent
2037b837f8
commit
d097742155
3 changed files with 1 additions and 6 deletions
|
|
@ -13,18 +13,16 @@ COMPILEFLAGS := -Wall -g -O3 -I$(IMXTOOLS_DIR)
|
|||
|
||||
# std=gnu99 is required by MinGW on Windows (c99 is sufficient for Linux / MXE)
|
||||
CFLAGS += -std=gnu99 $(COMPILEFLAGS)
|
||||
CXXFLAGS += $(COMPILEFLAGS)
|
||||
|
||||
TOMCRYPT_DIR := ../../utils/tomcrypt
|
||||
|
||||
CXXFLAGS += -I$(TOMCRYPT_DIR)/src/headers
|
||||
CFLAGS += -I$(TOMCRYPT_DIR)/src/headers
|
||||
LDOPTS += -lpthread $(TOMCRYPT_DIR)/librbtomcrypt.a
|
||||
|
||||
OUTPUT = mkimxboot
|
||||
|
||||
# inputs for lib
|
||||
IMXTOOLS_SOURCES = misc.c sb.c crypto.cpp crc.c elf.c
|
||||
IMXTOOLS_SOURCES = misc.c sb.c crypto.c crc.c elf.c
|
||||
LIBSOURCES := dualboot.c mkimxboot.c md5.c \
|
||||
$(addprefix $(IMXTOOLS_DIR),$(IMXTOOLS_SOURCES))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue