Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Cannot Reproduce
-
None
-
None
-
Ubuntu 16.04 with Oracle JVM 8 installed
Description
`make -k check` produces the error
```
Makefile:646: recipe for target 'check-recursive' failed
make: *** [check-recursive] Error 1
make: Target 'check' not remade because of errors.
```
Steps to reproduce:
on a fresh Ubuntu 16.04 VM (I use virtualbox), run:
```
- install oracle JVM 8
sudo apt-get install python-software-properties
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java8-installer
sudo apt-install oracle-java8-set-default - install thrift prerequisites
sudo apt-get install automake bison flex g++ git libboost-all-dev libevent-dev libssl-dev libtool make pkg-config ant - download thrift
git clone https://github.com/apache/thrift.git
cd thrift - compile thrift
sudo ./bootstrap.sh
sudo ./configure
sudo make
sudo make install - the make check failure
sudo make -k check
```
Labeled "Major" because further development on Thrift is difficult when the existing test suites do not pass.