Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for mingw (0.05 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/build.gradle

        if (platform.operatingSystem.windows) {
            return "vs2013/gtest.lib"
    //        return "vs2013/gtest-core.lib"
    //        return "cygwin/gtest-core.lib"
    //        return "mingw/gtest-core.lib"
        } else if (platform.operatingSystem.macOsX) {
            return "osx/libgtest.a"
        } else {
            return "linux/libgtest.a"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1007 bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/NMToolFixture.groovy

            def lines = process.inputStream.readLines()
            return lines.collect { line ->
                // Looks like on Linux:
                // _main t 0 0
                //
                // Looks like on Windows (MinGW):
                // main T 0000000000401550
                def splits = line.split(' ')
                String name = splits[0]
                char type = splits[1].getChars()[0]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. gradlew

    #       and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;
    #       see the in-line comments for details.
    #
    #       There are tweaks for specific operating systems such as AIX, CygWin,
    #       Darwin, MinGW, and NonStop.
    #
    #   (3) This script is generated from the Groovy template
    #       https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 11:20:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

    #       and ${optsEnvironmentVar}) rely on word-splitting, this is performed explicitly;
    #       see the in-line comments for details.
    #
    #       There are tweaks for specific operating systems such as AIX, CygWin,
    #       Darwin, MinGW, and NonStop.
    #
    #   (3) This script is generated from the Groovy template
    #       https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. src/make.bash

    	exit 1
    fi
    
    if [[ "$GOBUILDTIMELOGFILE" != "" ]]; then
    	echo $(LC_TIME=C date) start make.bash >"$GOBUILDTIMELOGFILE"
    fi
    
    # Test for Windows.
    case "$(uname)" in
    *MINGW* | *WIN32* | *CYGWIN*)
    	echo 'ERROR: Do not use make.bash to build on Windows.'
    	echo 'Use make.bat instead.'
    	echo
    	exit 1
    	;;
    esac
    
    # Test for bad ld.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/cmd/cgo/internal/test/test.go

    		t.Errorf("C.GoString(C.Issue6907CopyString(%q)) == %q, want %q", want, got, want)
    	}
    }
    
    // issue 7560
    
    func test7560(t *testing.T) {
    	// some mingw don't implement __packed__ correctly.
    	if C.offset7560() != 1 {
    		t.Skip("C compiler did not pack struct")
    	}
    
    	// C.misaligned should have x but then a padding field to get to the end of the struct.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
Back to top