mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-19 02:54:24 +00:00

In order to compile the source of Fiptool using Visual Studio a number of adjustments are required to the source. This commit modifies the source with changes that will be required, but makes no functional modification. The intent is to allow confirmation that the GCC build is unaffected. Change-Id: I4055bd941c646dd0a1aa2e24b940a1db3bf629ce Signed-off-by: Evan Lloyd <evan.lloyd@arm.com>
29 lines
569 B
C
29 lines
569 B
C
/*
|
|
* Copyright (c) 2016-2017, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*
|
|
* Build platform specific handling.
|
|
* This allows for builds on non-Posix platforms
|
|
* e.g. Visual Studio on Windows
|
|
*/
|
|
|
|
#ifndef __FIPTOOL_PLATFORM_H__
|
|
# define __FIPTOOL_PLATFORM_H__
|
|
|
|
# ifndef _MSC_VER
|
|
|
|
/* Not Visual Studio, so include Posix Headers. */
|
|
# include <getopt.h>
|
|
# include <openssl/sha.h>
|
|
# include <unistd.h>
|
|
|
|
# define BLD_PLAT_STAT stat
|
|
|
|
# else
|
|
|
|
/* Visual Studio. */
|
|
|
|
# endif
|
|
|
|
#endif /* __FIPTOOL_PLATFORM_H__ */
|