2

I'm a new user of chisel. I tried to install chisel on my machine. According to the git, first I cloned chisel and then I went to hello directory and enter make . But I got the below error:

set -e -o pipefail; sbt -Dsbt.log.noformat=true -DchiselVersion="latest.release" "run Hello --genHarness --compile --test --backend c --vcd " | tee Hello.out
/bin/sh: 1: set: Illegal option -o pipefail
make: *** [Hello.out] Error 2

I'm using sbt-0.13.8 and scala 2.11.6

Moriss
  • 325
  • 2
  • 12

2 Answers2

3

If you try without the command set -e -o pipefail it should works :

sbt -Dsbt.log.noformat=true -DchiselVersion="latest.release" "run Hello --genHarness --compile --test --backend c --vcd " | tee Hello.out
FabienM
  • 3,421
  • 23
  • 45
  • Thanks! it worked. Just to make it clear, this line should be changed in root folder in `suffix.mk` – Moriss Apr 03 '15 at 02:10
2

The problem is from Shell variable the correct solution is that, adding following line to Makefile:

SHELL=/bin/bash

It would solve the problem.

(They've updated the code)

Moriss
  • 325
  • 2
  • 12