Use stock ARM GCC and Newlib from Ubuntu distro

Standardize common packages in build images, to make better use of Docker image cache.

PUBLISHED_FROM=a080e83cf5dd80feaf7960147dee36413244a92c
This commit is contained in:
Deomid Ryabkov 2018-01-04 13:28:19 +03:00 committed by Cesanta Bot
parent 80f4133bbf
commit eb3b81297d

View File

@ -1630,15 +1630,15 @@ char *inet_ntoa(struct in_addr in);
#define CS_COMMON_PLATFORMS_PLATFORM_STM32_H_
#if CS_PLATFORM == CS_P_STM32
#include <sys/types.h>
#include <sys/stat.h>
#include <stdint.h>
#include <inttypes.h>
#include <stdio.h>
#include <ctype.h>
#include <errno.h>
#include <memory.h>
#include <fcntl.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <sys/types.h>
#include <stm32_sdk_hal.h>
#define to64(x) strtoll(x, NULL, 10)