Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for getCPPCompiler (0.38 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/PropertyAccessorTypeTest.groovy

            "getcCompiler"   | "iscCompiler"   | "setcCompiler"   | "cCompiler"
            "getCCompiler"   | "isCCompiler"   | "setCCompiler"   | "CCompiler"
            "getCppCompiler" | "isCppCompiler" | "setCppCompiler" | "cppCompiler"
            "getCPPCompiler" | "isCPPCompiler" | "setCPPCompiler" | "CPPCompiler"
            "getA"           | "isA"           | "setA"           | "a"
            "getb"           | "isb"           | "setb"           | "b"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/GccPlatformToolChain.java

         */
        GccCommandLineToolConfiguration getcCompiler();
    
        /**
         * Returns the settings to use for the C++ compiler.
         */
        GccCommandLineToolConfiguration getCppCompiler();
    
        /**
         * Returns the settings to use for the Objective-C compiler.
         */
        GccCommandLineToolConfiguration getObjcCompiler();
    
        /**
    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. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChain.java

                    @Override
                    public void execute(List<String> args) {
                        args.add("-m32");
                    }
                };
                gccToolChain.getCppCompiler().withArguments(m32args);
                gccToolChain.getcCompiler().withArguments(m32args);
                gccToolChain.getObjcCompiler().withArguments(m32args);
                gccToolChain.getObjcppCompiler().withArguments(m32args);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 20K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/VisualCppPlatformToolChain.java

         */
        CommandLineToolConfiguration getcCompiler();
    
        /**
         * Returns the settings to use for the C++ compiler.
         */
        CommandLineToolConfiguration getCppCompiler();
    
        /**
         * Returns the settings to use for the Windows resources compiler.
         */
        CommandLineToolConfiguration getRcCompiler();
    
        /**
         * Returns the settings to use for the assembler.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/clang/ClangToolChain.java

        @Override
        protected void configureDefaultTools(DefaultGccPlatformToolChain toolChain) {
            toolChain.getLinker().setExecutable("clang++");
            toolChain.getcCompiler().setExecutable("clang");
            toolChain.getCppCompiler().setExecutable("clang++");
            toolChain.getObjcCompiler().setExecutable("clang");
            toolChain.getObjcppCompiler().setExecutable("clang++");
            toolChain.getAssembler().setExecutable("clang");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/DefaultVisualCppPlatformToolChain.java

        }
    
        @Override
        public CommandLineToolConfiguration getcCompiler() {
            return tools.get(ToolType.C_COMPILER);
        }
    
        @Override
        public CommandLineToolConfiguration getCppCompiler() {
            return tools.get(ToolType.CPP_COMPILER);
        }
    
        @Override
        public CommandLineToolConfiguration getRcCompiler() {
            return tools.get(ToolType.WINDOW_RESOURCES_COMPILER);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/DefaultGccPlatformToolChain.java

        }
    
        @Override
        public GccCommandLineToolConfigurationInternal getcCompiler() {
            return tools.get(ToolType.C_COMPILER);
        }
    
        @Override
        public GccCommandLineToolConfigurationInternal getCppCompiler() {
            return tools.get(ToolType.CPP_COMPILER);
        }
    
        @Override
        public GccCommandLineToolConfigurationInternal getObjcCompiler() {
            return tools.get(ToolType.OBJECTIVEC_COMPILER);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/NativeBinarySpec.java

         *
         * Valid for {@link SharedLibraryBinarySpec}, {@link StaticLibraryBinarySpec} and
         * {@link NativeExecutableBinarySpec} when the 'cpp' plugin is applied.
         */
        PreprocessingTool getCppCompiler();
    
        /**
         * The configuration of the Objective-C compiler used when compiling Objective-C sources for this binary.
         *
         * Valid for {@link SharedLibraryBinarySpec}, {@link StaticLibraryBinarySpec} 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)
  9. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/AvailableToolChains.java

            public File getLinker() {
                return getCCompiler();
            }
    
            public File getStaticLibArchiver() {
                return find("ar");
            }
    
            public abstract File getCppCompiler();
    
            public abstract File getCCompiler();
    
            @Override
            public String getUnitTestPlatform() {
                if (OperatingSystem.current().isMacOsX()) {
                    return "osx";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/AbstractNativeBinarySpec.java

            return assembler;
        }
    
        @Override
        public PreprocessingTool getcCompiler() {
            return cCompiler;
        }
    
        @Override
        public PreprocessingTool getCppCompiler() {
            return cppCompiler;
        }
    
        @Override
        public PreprocessingTool getObjcCompiler() {
            return objcCompiler;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
Back to top