eth-sri / eran

ETH Robustness Analyzer for Deep Neural Networks
Apache License 2.0
313 stars 100 forks source link

install.sh cddlib references non-existant configure file #50

Closed fabianbauermarquart closed 3 years ago

fabianbauermarquart commented 3 years ago

Cloning cddlib from its repository does not work as there is no configure file in the repo, only a configure.ac for autoconf. I suggest changing

git clone https://github.com/cddlib/cddlib.git
cd cddlib
./configure
make
make install
cd ..

to

wget https://github.com/cddlib/cddlib/releases/download/0.94m/cddlib-0.94m.tar.gz
cd cddlib
./configure
make
make install
cd ..

because building the tarball works.

GgnDpSngh commented 3 years ago

Hi there,

Thanks for the feedback, I have added bootstrap instruction to the install file, make sure you have autoconf installed. Let me know if it works.

Cheers, Gagandeep Singh

shchae7 commented 3 years ago

Hi, though I'm not the one that opened this issue, looks like the updated install file works. But can you also update the README file?

GgnDpSngh commented 3 years ago

Done.

Cheers, Gagandeep Singh