-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
152 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
# | ||
# this image installs all necessary requirements to build zephyr | ||
# | ||
FROM phusion/baseimage:0.11 | ||
|
||
MAINTAINER Mohit Agnihotri "[email protected]" | ||
|
||
WORKDIR /home/circleci | ||
ENV HOME /home/circleci | ||
|
||
|
@@ -29,8 +30,6 @@ RUN curl -L ${SOLC_URL} > /tmp/solc-${SOLC_VERSION} && \ | |
mv /tmp/solc-${SOLC_VERSION} /usr/local/bin/ && \ | ||
ln -s /usr/local/bin/solc-${SOLC_VERSION} /usr/local/bin/solc | ||
|
||
#RUN wget http://pyyaml.org/download/pyyaml/PyYAML-3.13.tar.gz && tar -xvf PyYAML-3.13.tar.gz && cd PyYAML-3.13 && python setup.py install | ||
|
||
RUN pip3 install --no-cache-dir web3 eth_abi eth_utils click pyaml protobuf | ||
RUN ssh-keyscan -H github.com >> /root/.ssh/known_hosts | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
/* stdint.h */ | ||
|
||
/* | ||
* Copyright (c) 2014 Wind River Systems, Inc. | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
// | ||
// note - this is a compatibility file to support uint64_t and uint_least8_t on zephyr 1.12 | ||
// | ||
|
||
#ifndef STDINT_COMPAT_H_ | ||
#define STDINT_COMPAT_H_ | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
#define INT8_MAX 0x7F | ||
#define INT16_MAX 0x7FFF | ||
#define INT32_MAX 0x7FFFFFFF | ||
#define INT64_MAX 0x7FFFFFFFFFFFFFFFLL | ||
|
||
#define INT8_MIN (-INT8_MAX - 1) | ||
#define INT16_MIN (-INT16_MAX - 1) | ||
#define INT32_MIN (-INT32_MAX - 1) | ||
#define INT64_MIN (-INT64_MAX - 1LL) | ||
|
||
#define UINT8_MAX 0xFF | ||
#define UINT16_MAX 0xFFFF | ||
#define UINT32_MAX 0xFFFFFFFFU | ||
#define UINT64_MAX 0xFFFFFFFFFFFFFFFFULL | ||
|
||
#define INTPTR_MIN INT32_MIN | ||
#define INTPTR_MAX INT32_MAX | ||
#define UINTPTR_MAX UINT32_MAX | ||
|
||
#define PTRDIFF_MIN INT32_MIN | ||
#define PTRDIFF_MAX INT32_MAX | ||
|
||
#define SIZE_MAX UINT32_MAX | ||
|
||
typedef signed char int8_t; | ||
typedef signed short int16_t; | ||
typedef signed int int32_t; | ||
typedef signed long long int64_t; | ||
|
||
/* Assume int to be the fastest type for all types except 64bit ones */ | ||
|
||
typedef signed int int_fast8_t; | ||
typedef signed int int_fast16_t; | ||
typedef signed int int_fast32_t; | ||
typedef signed long long int_fast64_t; | ||
|
||
typedef signed char int_least8_t; | ||
typedef signed short int_least16_t; | ||
typedef signed int int_least32_t; | ||
typedef signed long long int_least64_t; | ||
|
||
typedef unsigned char uint8_t; | ||
typedef unsigned short uint16_t; | ||
typedef unsigned int uint32_t; | ||
typedef unsigned long long uint64_t; | ||
|
||
typedef unsigned int uint_fast8_t; | ||
typedef unsigned int uint_fast16_t; | ||
typedef unsigned int uint_fast32_t; | ||
typedef unsigned long long uint_fast64_t; | ||
|
||
typedef unsigned char uint_least8_t; | ||
typedef unsigned short uint_least16_t; | ||
typedef unsigned int uint_least32_t; | ||
typedef unsigned long long uint_least64_t; | ||
|
||
typedef int intptr_t; | ||
typedef unsigned int uintptr_t; | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
|
||
#endif /* STDINT_COMPAT_H_ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.