cambridgehackers / connectal

Connectal is a framework for software-driven hardware development.
MIT License
161 stars 46 forks source link

fixed-make-install-dependences #110

Closed tudang closed 8 years ago

tudang commented 8 years ago

I tried to build connectal from source on ubuntu 15.04 but it failed. Replacing libgmp3c2 by libgmpxx4ldbl fixed the issue.

hanw commented 8 years ago

We need to be careful about backward compatibility, there needs to be a check on the version of ubuntu to install the correct package.

hanw commented 8 years ago

@jameyhicks

tudang commented 8 years ago

I replace previous change by creating a link for libgmp.so.3 as your suggestion. The code check whether libgmp.so.3 exists. If not, create a link libgmp.so -> libgmp.so.3

hanw commented 8 years ago

This patch does not install libgmp10.

hanw commented 8 years ago

how about ln -sf /usr/lib/x86_64-linux-gnu/libgmp.so /usr/lib/x86_64-linux-gnu/libgmp.so.3

tudang commented 8 years ago

Thank you, Han. I've included libgmp10 package.

jameyhicks commented 8 years ago

Thanks for submitting this pull request!