search for: has_funct

Displaying 4 results from an estimated 4 matches for "has_funct".

Did you mean: hashfunct
2005 Oct 21
1
problems with tools/pygrub/setup.py and xen/xm/main.py
When making the "unstable" version I got an in "tools". There was a complaint about "cc.has_function" in the following code area in tools/pygrub/setup.py if cc.has_function("ext2fs_open"): ext2defines.append( ("HAVE_EXT2FS_OPEN2", None) ) else : sys.stderr.write ("Warning: older veriosn of e2fsprogs installed ...") sys.stderr.writ...
2005 Oct 21
1
Re: [Xen-changelog] Tweak to pygrub build config detection.
On Fri, 2005-10-21 at 18:54 +0000, Xen patchbot -unstable wrote: > # HG changeset patch > # User kaf24@firebug.cl.cam.ac.uk > # Node ID 8eaaa622db81393ef0eae497090c34c04adf4212 > # Parent 3eee5653f08b01a310e0a9172a6c0149f16217df > Tweak to pygrub build config detection. > Signed-off-by: Jeremy Katz <katzj@redhat.com> Applying both patches for this is overkill.... ;)
2020 Sep 03
0
Re: libvirt 6.7 meson.build error
...= dependency('devmapper', version: '>=' + devmapper_version, required: false) if not devmapper_dep.found() # devmapper is missing pkg-config files in ubuntu, suse, etc devmapper_dep = cc.find_library('devmapper', required: false) if devmapper_dep.found() and not cc.has_function('dm_task_run', dependencies: tmp) devmapper_dep = dependency('', required: false) endif endif it is indeed referencing a "tmp" variable that doesn't exist. What OS distro are you using ? This happens because you are missing the required version of devmapper...
2017 Jun 21
6
RFC: Cleaning up the Itanium demangler
...+ + void print(stream& s) + { + s.grow(last - first); + s += string_ref(s.buf + first, s.buf + last); + } +}; + +struct node_meta +{ + // If this node has any rhs part, potentally nested. + unsigned has_rhs_component : 1; + + unsigned has_array : 1; + unsigned has_function : 1; + + // Quick RTTI, just for types that need it. + unsigned is_qual_type : 1; + unsigned is_template_param_list : 1; + unsigned is_special_substitution : 1; + unsigned is_name_type : 1; + unsigned is_objcproto_name : 1; + + node_meta() { memset(this, 0, sizeof(*this)); }...