Displaying 2 results from an estimated 2 matches for "ignoresize".
2019 Feb 12
3
weird RPM dependency error; '/bin/sh' needed, but is provided
...ldap-ltb-2.4.47-1.el7.x86_64.rpm
Now, I try to make an RPM database of these packages. The last step fails
with an unmet dependency:
$ sudo mount ~/CentOS-7-x86_64-Minimal-1810.iso -r -t iso9660 -o loop /mnt
$ mkdir -p ~/local_rpm_db
$ rpm --initdb --dbpath ~/local_rpm_db
$ rpm --justdb --ignoresize --dbpath ~/local_rpm_db -Uvh /mnt/Packages/*.rpm *.rpm
warning: /mnt/cdrom/Packages/acl-2.2.51-14.el7.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID f4a80eb5: NOKEY
warning: berkeleydb-ltb-4.6.21.NC-4.el7.patch4.x86_64.rpm: Header V4 DSA/SHA1 Signature, key ID 6d45bfc5: NOKEY
error: Faile...
2012 Dec 17
0
[LLVMdev] LLVMdev Digest, Vol 98, Issue 33
...il so late.
Recently, I tried to understand what's the impact of the warning message
(Warning: stand-alone `data16' prefix)
And in binutils (gas/config/tc-i386.c), I found:
if (!quiet_warnings)
{
.....
if (t->opcode_modifier.isprefix
&& t->opcode_modifier.ignoresize)
{
/* Warn them that a data or address size prefix doesn't
affect assembly of the next line of code. */
as_warn (_("stand-alone `%s' prefix"), t->name);
}
}
It looks like the `data16' does not have any influence on the instructions
followe...