[Compression] Ensure that we do link against libcompression. (#4091)

We need to pass libcrompession in the linking flags, which was not
present and makes the build fail.
This commit is contained in:
Manuel de la Pena 2018-05-16 09:04:59 -04:00 коммит произвёл GitHub
Родитель 70530e548d
Коммит 4e00419814
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -364,6 +364,7 @@ namespace Xamarin.Bundler {
Driver.Log (3, "Linking with {0} because it's referenced by a module reference in {1}", file, FileName);
break;
case "libsqlite3":
case "libcompression":
// remove lib prefix
LinkerFlags.Add ("-l" + file.Substring (3));
Driver.Log (3, "Linking with {0} because it's referenced by a module reference in {1}", file, FileName);