Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for mingw (0.04 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/ToolChainRequirement.java

        // Any available Visual Studio >= 2019
        VISUALCPP_2019_OR_NEWER,
        // Any windows GCC compatible implementation (mingw, cygwin)
        WINDOWS_GCC,
        // Any available GCC implementation (including mingw, cygwin, but not clang)
        GCC,
        // Any available GCC compatible implementation (including mingw, cygwin, and clang)
        GCC_COMPATIBLE,
        // Any available Clang
        CLANG,
        // Any Swift compiler
        SWIFTC,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/DumpbinGccProducedBinaryInfo.groovy

        }
    
        @Override
        List<Symbol> listSymbols() {
            // With VS2019, dumpbin is not able to properly list the headers of a MinGW which prevent us from asserting the presence or not of debug symbols. For this, we started to migrate toward using the Linux tools within the MinGW installation.
            return NMToolFixture.of(environments).listSymbols(binaryFile)
        }
    
        void assertHasDebugSymbols() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. mvnw

      if [ -f "$HOME/.mavenrc" ] ; then
        . "$HOME/.mavenrc"
      fi
    
    fi
    
    # OS specific support.  $var _must_ be set to either true or false.
    cygwin=false;
    darwin=false;
    mingw=false
    case "$(uname)" in
      CYGWIN*) cygwin=true ;;
      MINGW*) mingw=true;;
      Darwin*) darwin=true
        # Use /usr/libexec/java_home if available, otherwise fall back to /Library/Java/Home
        # See https://developer.apple.com/library/mac/qa/qa1170/_index.html
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 16 20:48:20 UTC 2023
    - 11K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/tool-chains/groovy/src/main/cpp/main.cpp

    #include <iostream>
    
    int main () {
        #if defined(__clang__)
            std::cout << "Hello from clang!" << std::endl;
        #elif defined(__GNUC__) && defined(__MINGW32__)
            std::cout << "Hello from mingw!" << std::endl;
        #elif defined(__GNUC__) && defined(__CYGWIN__)
            std::cout << "Hello from gcc cygwin!" << std::endl;
        #elif defined(__GNUC__)
            std::cout << "Hello from gcc!" << std::endl;
        #elif defined(_MSC_VER)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 615 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/README.md

    As such, this sample will only work without modification on Windows with Visual Studio 2010. Uncomment the relevant line in the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 492 bytes
    - Viewed (0)
  6. 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)
  7. platforms/documentation/docs/src/snippets/native-binaries/target-platforms/groovy/src/main/cpp/main.cpp

    #include <iostream>
    
    int main () {
        #if defined(__clang__)
            std::cout << "Hello from clang!" << std::endl;
        #elif defined(__GNUC__) && defined(__MINGW32__)
            std::cout << "Hello from mingw!" << std::endl;
        #elif defined(__GNUC__) && defined(__CYGWIN__)
            std::cout << "Hello from gcc cygwin!" << std::endl;
        #elif defined(__GNUC__)
            std::cout << "Hello from gcc!" << std::endl;
        #elif defined(_MSC_VER)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 615 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/cunit/README.md

    As such, this sample will only work without modification on Windows with Visual Studio 2010. Uncomment the relevant line in the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 486 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/prebuilt/groovy/build.gradle

                        if (os.windows) {
                            // Windows uses a .dll file, with a different link file if it exists (not Cygwin or MinGW)
                            sharedLibraryFile = file("${baseDir}/util.dll")
                            if (file("${baseDir}/util.lib").exists()) {
                                sharedLibraryLinkFile = file("${baseDir}/util.lib")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/build.gradle

        if (platform.operatingSystem.windows) {
    //        return "vs2010/cunit.lib"
    //        return "vs2013/cunit.lib"
            return "vs2015/cunit.lib"
    //        return "cygwin/cunit.lib"
    //        return "mingw/cunit.lib"
        } else if (platform.operatingSystem.macOsX) {
            return "osx/libcunit.a"
        } else {
            return "linux/libcunit.a"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top