1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00
* scripts/abi-versions.awk: If the version specified by
	--enable-oldest-abi is older than the first version for this
	architecture, use the default version.
This commit is contained in:
Ulrich Drepper
2008-04-09 05:39:54 +00:00
parent 7b61ef2419
commit c2a684a419
2 changed files with 8 additions and 0 deletions

View File

@ -30,6 +30,9 @@ $2 == "=" {
printf "#define ABI_%s_%s\tABI_%s_%s\n", libid, oldid, libid, newid;
printf "#define VERSION_%s_%s\t%s\n", libid, oldid, new;
if ("GLIBC_" oldest_abi == old)
oldest_abi = "default";
next;
}