eldk opened a new issue #1762: When building : /usr/bin/ld : can't find -luuid URL: https://github.com/apache/incubator-pagespeed-mod/issues/1762 Hello, When building mod_pagespeed from sources, on ubuntu 16.04 those errors may be thrown : ``` LINK(target) out/Debug/mod_pagespeed_test LINK(target) out/Debug/pagespeed_automatic_test /usr/bin/ld : ne peut trouver -luuid collect2: error: ld returned 1 exit status net/instaweb/mod_pagespeed_test.target.mk:441 : la recette pour la cible « out/Debug/mod_pagespeed_test » a échouée make: *** [out/Debug/mod_pagespeed_test] Erreur 1 make: *** Attente des tâches non terminées.... /usr/bin/ld : ne peut trouver -luuid collect2: error: ld returned 1 exit status net/instaweb/pagespeed_automatic_test.target.mk:743 : la recette pour la cible « out/Debug/pagespeed_automatic_test » a échouée make: *** [out/Debug/pagespeed_automatic_test] Erreur 1 ``` Those are due to missing link from libuuid.so to libuuid.so.1.3.0 . ``` ln -s /lib/x86_64-linux-gnu/libuuid.so.1.3.0 /lib/x86_64-linux-gnu/libuuid.so ``` Make build succeed. Eric
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
