Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for zig (0.03 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbFile.java

     *  smb1://host/share/a/b/c/d/
     * </code></td></tr>
     * 
     * <tr><td width="20%"><code>
     *  smb1://host/share/foo/bar/
     * </code></td><td width="20%"><code>
     *  /share2/zig/zag
     * </code></td><td><code>
     *  smb1://host/share2/zig/zag
     * </code></td></tr>
     * 
     * <tr><td width="20%"><code>
     *  smb1://host/share/foo/bar/
     * </code></td><td width="20%"><code>
     *  ../zip/
     * </code></td><td><code>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/buildid.go

    				// C compiler may use. (Clang and GCC mostly seem to follow the scheme X.Y.Z,
    				// but in https://go.dev/issue/64619 we saw "8.3 [DragonFly]", and who knows
    				// what other C compilers like "zig cc" might report?)
    				next := fields[i+1]
    				if len(next) > 0 && next[0] >= '0' && next[0] <= '9' {
    					version = line
    					break
    				}
    			}
    		}
    		if version != "" {
    			break
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    		a = append(a, "-fno-caret-diagnostics")
    	}
    	// clang is too smart about command-line arguments
    	if b.gccSupportsFlag(compiler, "-Qunused-arguments") {
    		a = append(a, "-Qunused-arguments")
    	}
    
    	// zig cc passes --gc-sections to the underlying linker, which then causes
    	// undefined symbol errors when compiling with cgo but without C code.
    	// https://github.com/golang/go/issues/52690
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top