Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for gcccygwin (0.11 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLanguageIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        def "finds C and C++ standard library headers"() {
            // https://github.com/gradle/gradle-native/issues/282
            Assume.assumeFalse(toolChain.id == "gcccygwin")
            given:
            buildFile << """
                model {
                    components {
                        main(NativeLibrarySpec)
                    }
                }
             """
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K 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
        def "cleans up stale object files when executable source file renamed"() {
            given:
    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/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProviderTest.groovy

    #define __GNUC_PATCHLEVEL__ 0
    #define __GNUC__ 10
    """
    
        static def gccAmd64 = """#define __GNUC_MINOR__ 2
    #define __GNUC_PATCHLEVEL__ 1
    #define __GNUC__ 4
    #define __amd64__ 1
    """
        static def gccCygwin64 = """#define __CYGWIN__ 1
    #define __GNUC__ 7
    #define __GNUC_MINOR__ 3
    #define __x86_64__ 1
    """
        static def clang = """#define __GNUC_MINOR__ 2
    #define __GNUC_PATCHLEVEL__ 1
    #define __GNUC__ 4
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 06:01:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top