Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 54 for mingw (0.22 sec)

  1. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    | Windows
    | http://gcc.gnu.org/[GCC] with http://cygwin.com[Cygwin 32 and Cygwin 64]
    | Windows XP and later.
    
    | Windows
    | http://gcc.gnu.org/[GCC] with http://www.mingw.org/[MinGW] and https://mingw-w64.org/doku.php[MinGW64]
    | Windows XP and later.
    |===
    
    The following tool chains are unofficially supported. They generally work fine, but are not tested continuously:
    
    [%header%autowidth,compact]
    |===
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProviderTest.groovy

            def amd64 = output(gccAmd64, gccVerboseOutput())
            amd64.component.defaultArchitecture.isAmd64()
        }
    
        @Issue("https://github.com/gradle/gradle-native/issues/1107")
        def "can handle mingw GCC on Linux, despite the version number not being fully included"() {
            expect:
            def result = output(gccMingw, gccMinGWOnLinuxOutput)
            result.available
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 06:01:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/pe.go

    		case sym.STEXT, sym.SDYNIMPORT, sym.SHOSTOBJ, sym.SUNDEFEXT:
    			// Microsoft's PE documentation is contradictory. It says that the symbol's complex type
    			// is stored in the pesym.Type most significant byte, but MSVC, LLVM, and mingw store it
    			// in the 4 high bits of the less significant byte. Also, the PE documentation says that
    			// the basic type for a function should be IMAGE_SYM_TYPE_VOID,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testcshared/cshared_test.go

    		}
    
    		args := []string{dlltoolpath, "-D", args[6], "-l", libgoname, "-d", "libgo.def"}
    
    		if filepath.Ext(dlltoolpath) == "" {
    			// This is an unfortunate workaround for
    			// https://github.com/mstorsjo/llvm-mingw/issues/205 in which
    			// we basically reimplement the contents of the dlltool.sh
    			// wrapper: https://git.io/JZFlU.
    			// TODO(thanm): remove this workaround once we can upgrade
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 21K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loadpe/ldpe.go

    	}
    
    	var s loader.Sym
    	var bld *loader.SymbolBuilder
    	// Microsoft's PE documentation is contradictory. It says that the symbol's complex type
    	// is stored in the pesym.Type most significant byte, but MSVC, LLVM, and mingw store it
    	// in the 4 high bits of the less significant byte.
    	switch uint8(pesym.Type&0xf0) >> 4 {
    	default:
    		return nil, 0, fmt.Errorf("%s: invalid symbol type %d", symname, pesym.Type)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //   GTEST_OS_QNX      - QNX
    //   GTEST_OS_SOLARIS  - Sun Solaris
    //   GTEST_OS_SYMBIAN  - Symbian
    //   GTEST_OS_WINDOWS  - Windows (Desktop, MinGW, or Mobile)
    //     GTEST_OS_WINDOWS_DESKTOP  - Windows Desktop
    //     GTEST_OS_WINDOWS_MINGW    - MinGW
    //     GTEST_OS_WINDOWS_MOBILE   - Windows Mobile
    //   GTEST_OS_ZOS      - z/OS
    //
    // Among the platforms, Cygwin, Linux, macOS, and Windows have the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //   GTEST_OS_QNX      - QNX
    //   GTEST_OS_SOLARIS  - Sun Solaris
    //   GTEST_OS_SYMBIAN  - Symbian
    //   GTEST_OS_WINDOWS  - Windows (Desktop, MinGW, or Mobile)
    //     GTEST_OS_WINDOWS_DESKTOP  - Windows Desktop
    //     GTEST_OS_WINDOWS_MINGW    - MinGW
    //     GTEST_OS_WINDOWS_MOBILE   - Windows Mobile
    //   GTEST_OS_ZOS      - z/OS
    //
    // Among the platforms, Cygwin, Linux, macOS, and Windows have the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  8. src/runtime/os_windows.go

    	_WerSetFlags,
    	_WriteConsoleW,
    	_WriteFile,
    	_ stdFunction
    
    	// Use ProcessPrng to generate cryptographically random data.
    	_ProcessPrng stdFunction
    
    	// Load ntdll.dll manually during startup, otherwise Mingw
    	// links wrong printf function to cgo executable (see issue
    	// 12030 for details).
    	_NtCreateWaitCompletionPacket    stdFunction
    	_NtAssociateWaitCompletionPacket stdFunction
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/lib.go

    // doing internal linking on windows. Older toolchains seem to require
    // just a single pass through the various archives, but some modern
    // toolchains when linking a C program with mingw pass library paths
    // multiple times to the linker, e.g. "... -lmingwex -lmingw32 ...
    // -lmingwex -lmingw32 ...". To accommodate this behavior, we make two
    // passes over the host archives below.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  10. src/runtime/asm_386.s

    DATA	runtime·mainPC+0(SB)/4,$runtime·main(SB)
    GLOBL	runtime·mainPC(SB),RODATA,$4
    
    TEXT runtime·breakpoint(SB),NOSPLIT,$0-0
    	INT $3
    	RET
    
    TEXT runtime·asminit(SB),NOSPLIT,$0-0
    	// Linux and MinGW start the FPU in extended double precision.
    	// Other operating systems use double precision.
    	// Change to double precision to match them,
    	// and to match other hardware that only has double.
    	FLDCW	runtime·controlWord64(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
Back to top