Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getArchitecture (0.1 sec)

  1. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/CppProjectInitDescriptor.java

            }
    
            definition += ".";
    
            if (host.getArchitecture().isI386()) {
                definition += "x86";
            } else if (host.getArchitecture().isAmd64()) {
                definition += "x86_64";
            } else {
                definition += "architecture(\"" + host.getArchitecture().getName() + "\")";
            }
    
            return definition;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 19:14:24 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top