2016-05-10 14:19:43 +00:00
|
|
|
![TREZOR Core](docs/logo.png)
|
2016-02-01 10:52:57 +00:00
|
|
|
|
2016-10-03 14:32:58 +00:00
|
|
|
[![Build Status](https://travis-ci.org/trezor/trezor-core.svg?branch=master)](https://travis-ci.org/trezor/trezor-core) [![gitter](https://badges.gitter.im/trezor/community.svg)](https://gitter.im/trezor/community)
|
|
|
|
|
2016-02-01 16:25:52 +00:00
|
|
|
* [Documentation](docs/)
|
2016-04-30 22:30:16 +00:00
|
|
|
|
2016-09-29 10:37:52 +00:00
|
|
|
##Build instructions for emulator
|
2016-04-30 22:30:16 +00:00
|
|
|
|
|
|
|
###Linux
|
|
|
|
|
2016-06-03 14:16:07 +00:00
|
|
|
####Debian/Ubuntu
|
|
|
|
|
2016-04-30 22:30:16 +00:00
|
|
|
```
|
2016-06-03 14:08:37 +00:00
|
|
|
sudo apt-get install libsdl2-dev:i386
|
2016-04-30 22:30:16 +00:00
|
|
|
make build_unix
|
|
|
|
```
|
|
|
|
|
2016-06-03 14:16:07 +00:00
|
|
|
####Fedora
|
|
|
|
|
|
|
|
```
|
|
|
|
sudo yum install SDL2-devel.i686
|
|
|
|
make build_unix
|
|
|
|
```
|
|
|
|
|
|
|
|
####openSUSE
|
|
|
|
|
|
|
|
```
|
|
|
|
sudo zypper install libSDL2-devel-32bit
|
|
|
|
make build_unix
|
|
|
|
```
|
|
|
|
|
2016-04-30 22:30:16 +00:00
|
|
|
###OS X
|
|
|
|
|
|
|
|
```
|
2016-06-03 14:16:07 +00:00
|
|
|
brew install --universal sdl2
|
|
|
|
make build_unix
|
2016-04-30 22:30:16 +00:00
|
|
|
```
|
2016-06-03 14:16:07 +00:00
|
|
|
|
|
|
|
### Windows
|
|
|
|
|
|
|
|
Not supported yet ...
|
2016-09-29 10:37:52 +00:00
|
|
|
|
|
|
|
##Build instructions for ARM
|
|
|
|
|
|
|
|
###Linux
|
|
|
|
|
2016-09-29 11:35:24 +00:00
|
|
|
For flashing firmware to blank device (without bootloader) by ```make flash```, please install https://github.com/texane/stlink
|
|
|
|
|
2016-09-29 10:37:52 +00:00
|
|
|
####Debian/Ubuntu
|
|
|
|
|
|
|
|
```
|
|
|
|
sudo apt-get install gcc-arm-none-eabi libnewlib-arm-none-eabi
|
|
|
|
make build_strmhal_frozen
|
|
|
|
```
|