On 03/18/2015 03:21 PM, Moez Roy wrote:

> I was doing some research last night but not tested it yet:
> 
> "nonow"

That's not a thing.  The opposite of “-z now” is “-z lazy”:

      else if (strcmp (optarg, "now") == 0)
        {
          link_info.flags |= (bfd_vma) DF_BIND_NOW;
          link_info.flags_1 |= (bfd_vma) DF_1_NOW;
        }
      else if (strcmp (optarg, "lazy") == 0)
        {
          link_info.flags &= ~(bfd_vma) DF_BIND_NOW;
          link_info.flags_1 &= ~(bfd_vma) DF_1_NOW;
        }

-- 
Florian Weimer / Red Hat Product Security
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Reply via email to