From c8196b0164342826b39cb91cb11266c50f50d7af Mon Sep 17 00:00:00 2001 From: Adam Izraelevitz Date: Wed, 29 Jul 2015 15:01:54 -0700 Subject: Added linux zip --- src/lib/stanza-linux.zip | Bin 0 -> 3853588 bytes src/lib/stanza-mac.zip | Bin 0 -> 3684669 bytes src/lib/stanza.zip | Bin 3684669 -> 0 bytes 3 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 src/lib/stanza-linux.zip create mode 100644 src/lib/stanza-mac.zip delete mode 100644 src/lib/stanza.zip diff --git a/src/lib/stanza-linux.zip b/src/lib/stanza-linux.zip new file mode 100644 index 00000000..95f1b10b Binary files /dev/null and b/src/lib/stanza-linux.zip differ diff --git a/src/lib/stanza-mac.zip b/src/lib/stanza-mac.zip new file mode 100644 index 00000000..a902edd8 Binary files /dev/null and b/src/lib/stanza-mac.zip differ diff --git a/src/lib/stanza.zip b/src/lib/stanza.zip deleted file mode 100644 index a902edd8..00000000 Binary files a/src/lib/stanza.zip and /dev/null differ -- cgit v1.2.3 From 55b8534d68cda8b0e9a8fe0de83f557f8e393994 Mon Sep 17 00:00:00 2001 From: Adam Izraelevitz Date: Wed, 29 Jul 2015 20:11:45 -0700 Subject: Added installation for linux --- Makefile | 8 ++++++-- README.md | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 3fb491c4..b46d2cb8 100644 --- a/Makefile +++ b/Makefile @@ -10,8 +10,12 @@ all-noise: all: build check done -install: - cd src/lib && unzip stanza.zip +install-linux: + cd src/lib && unzip stanza-linux.zip + cd src/lib/stanza && sudo ./stanza -platform linux -install /usr/local/bin/stanza + +install-mac: + cd src/lib && unzip stanza-mac.zip cd src/lib/stanza && sudo ./stanza -platform os-x -install /usr/local/bin/stanza build-deploy: diff --git a/README.md b/README.md index fd5be0dc..e02f0e8e 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ #### Installation instructions (for Mac): *Disclaimer*: This project is going through development stages so there is no guarantee anything works. `git clone https://github.com/ucb-bar/firrtl # Clone repository` - `make install # Stanza installation` + `make install-mac # Stanza installation` `pip install lit # Install lit (this assumes you have pip installed)` `make build # Build firrtl` `make check # Run tests` -- cgit v1.2.3