setGnuLibCVersion
Function parameters
Parameters
- self:*Query
- major:u32
- minor:u32
- patch:u32
Type definitions in this namespace
Types
Functions in this namespace
Functions
- parseCpuArch
- Similar to `parse` except instead of fully parsing, it only determines the CPU
- parseVersion
- Similar to `SemanticVersion.parse`, but with following changes:
- serializeCpu
- Renders the query into a textual representation that can be parsed via the
Source
Implementation
pub fn setGnuLibCVersion(self: *Query, major: u32, minor: u32, patch: u32) void {
self.glibc_version = SemanticVersion{ .major = major, .minor = minor, .patch = patch };
}