1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2025-09-20 02:09:25 +03:00

Remove Intel AES-NI library

This commit is contained in:
Davide Beatrici
2018-04-16 04:39:36 +02:00
parent a7be140f85
commit 420e575ab1
12 changed files with 6 additions and 237 deletions

View File

@ -999,15 +999,6 @@ namespace BuildUtil
}
}
if (this.Os == OSList.Linux)
{
if (this.Cpu == CpuList.x86 || this.Cpu == CpuList.x64)
{
// Include libintelaes.a only for x86 / x64 in Linux
libs.Add(string.Format("lib/{0}.a", "libintelaes"));
}
}
gccOptionForCompile = MakeGccOptions(macros.ToArray(), includes.ToArray(), options.ToArray(), null);
if (crossCompile)