Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 54 for mingw (0.05 sec)

  1. src/cmd/nm/nm_test.go

    		"debug/macho/testdata/gcc-386-darwin-exec.base64",   // golang.org/issue/34986
    		"debug/macho/testdata/gcc-amd64-darwin-exec.base64", // golang.org/issue/34986
    		// "debug/pe/testdata/gcc-amd64-mingw-exec", // no symbols!
    		"debug/pe/testdata/gcc-386-mingw-exec",
    		"debug/plan9obj/testdata/amd64-plan9-exec",
    		"debug/plan9obj/testdata/386-plan9-exec",
    		"internal/xcoff/testdata/gcc-ppc64-aix-dwarf2-exec",
    	}
    	for _, f := range testfiles {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 20 23:32:34 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalBuildIntegrationTest.groovy

            executedAndNotSkipped ":mainExecutable"
    
            and:
            executable.assertExists()
    
            // Identical binaries produced on mingw and gcc cygwin
            if (!(toolChain.id in ["mingw", "gcccygwin"])) {
                executable.assertHasChangedSince(snapshot)
            }
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/AnsiConsoleUtil.java

        private static final boolean IS_XTERM = environmentVariableStartsWith("TERM", "xterm");
        private static final boolean IS_MINGW_XTERM = IS_XTERM && environmentVariableStartsWith("MSYSTEM", "MINGW");
    
        private static boolean environmentVariableStartsWith(String name, String pattern) {
            return System.getenv(name) != null && System.getenv(name).startsWith(pattern);
        }
    
        private AnsiConsoleUtil() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/PrebuiltLibrariesIntegrationTest.groovy

                        def baseDir = "libs/build/libs/hello/shared/french"
                        if (os.windows) {
                            // Windows uses a .dll file, and a different link file if it exists (not Cygwin or MinGW)
                            sharedLibraryFile = file("\${baseDir}/hello.dll")
                            if (file("\${baseDir}/hello.lib").exists()) {
                                sharedLibraryLinkFile = file("\${baseDir}/hello.lib")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/GccPlatformToolProvider.java

        }
    
        private CommandLineToolContext context(GccCommandLineToolConfigurationInternal toolConfiguration) {
            MutableCommandLineToolContext baseInvocation = new DefaultMutableCommandLineToolContext();
            // MinGW requires the path to be set
            baseInvocation.addPath(toolSearchPath.getPath());
            baseInvocation.addEnvironmentVar("CYGWIN", "nodosfilewarning");
            baseInvocation.setArgAction(toolConfiguration.getArgAction());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  6. 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)
  7. platforms/documentation/docs/src/docs/userguide/native/building_cpp_projects.adoc

    Gradle has general support for the three major tool chains on major operating system: Clang footnote:[Installed with Xcode on macOS], GCC footnote:[Installed through Cygwin and MinGW for 32- and 64-bits architecture on Windows] and Visual {cpp} footnote:[Installed with Visual Studio 2010 to 2019] (Windows-only).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProvider.java

            String line;
            try {
                while ((line = reader.readLine()) != null) {
                    // allowing win32 to bypass the check is due to the mingw compiler on linux not including major.minor in the version string.
                    if ((line.contains(majorMinorOnly) || line.contains("win32"))
                        && line.contains(" version ")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 06:39:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativePreCompiledHeaderIntegrationTest.groovy

            if (toolChain.displayName.startsWith("clang")) {
                return "warning: ${message}"
            } else if (toolChain.displayName.startsWith("gcc") || toolChain.displayName == "mingw") {
                return "message: ${message}"
            } else {
                return message
            }
        }
    
        List<SourceFile> getLibrarySources(String headerPath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/AvailableToolChains.java

            }
    
            return toolChains;
        }
    
        public enum ToolFamily {
            GCC("gcc"),
            CLANG("clang"),
            VISUAL_CPP("visual c++"),
            MINGW_GCC("mingw"),
            CYGWIN_GCC("gcc cygwin"),
            SWIFTC("swiftc");
    
            private final String displayName;
    
            ToolFamily(String displayName) {
                this.displayName = displayName;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 41.6K bytes
    - Viewed (0)
Back to top