Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for getAssemble (0.42 sec)

  1. platforms/native/language-native/src/testFixtures/groovy/org/gradle/language/LanguageTaskNames.groovy

                }
    
                String getInstall() {
                    return withProject("install${buildType}${variant}")
                }
    
                String getAssemble() {
                    return withProject("assemble${buildType}${variant}")
                }
    
                List<String> getAllToCreate() {
                    return [compile, create]
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/GccPlatformToolChain.java

         */
        GccCommandLineToolConfiguration getObjcppCompiler();
    
        /**
         * Returns the settings to use for the assembler.
         */
        GccCommandLineToolConfiguration getAssembler();
    
        /**
         * Returns the settings to use for the linker.
         */
        GccCommandLineToolConfiguration getLinker();
    
        /**
         * Returns the settings to use for the archiver.
         */
    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

                gccToolChain.getObjcCompiler().withArguments(m32args);
                gccToolChain.getObjcppCompiler().withArguments(m32args);
                gccToolChain.getLinker().withArguments(m32args);
                gccToolChain.getAssembler().withArguments(m32args);
    
            }
        }
    
        private static class Intel64Architecture implements TargetPlatformConfiguration {
            @Override
    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 getRcCompiler();
    
        /**
         * Returns the settings to use for the assembler.
         */
        CommandLineToolConfiguration getAssembler();
    
        /**
         * Returns the settings to use for the linker.
         */
        CommandLineToolConfiguration getLinker();
    
        /**
         * Returns the settings to use for the archiver.
         */
    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

            toolChain.getCppCompiler().setExecutable("clang++");
            toolChain.getObjcCompiler().setExecutable("clang");
            toolChain.getObjcppCompiler().setExecutable("clang++");
            toolChain.getAssembler().setExecutable("clang");
        }
    
        @Override
        protected String getTypeName() {
            return "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 getRcCompiler() {
            return tools.get(ToolType.WINDOW_RESOURCES_COMPILER);
        }
    
        @Override
        public CommandLineToolConfiguration getAssembler() {
            return tools.get(ToolType.ASSEMBLER);
        }
    
        @Override
        public CommandLineToolConfiguration getLinker() {
            return tools.get(ToolType.LINKER);
        }
    
        @Override
    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

        public GccCommandLineToolConfigurationInternal getObjcppCompiler() {
            return tools.get(ToolType.OBJECTIVECPP_COMPILER);
        }
    
        @Override
        public GccCommandLineToolConfigurationInternal getAssembler() {
            return tools.get(ToolType.ASSEMBLER);
        }
    
        @Override
        public GccCommandLineToolConfigurationInternal getLinker() {
            return tools.get(ToolType.LINKER);
        }
    
    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 'assembler' plugin is applied.
         */
        Tool getAssembler();
    
        /**
         * The configuration of the C compiler used when compiling 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/main/java/org/gradle/nativeplatform/internal/AbstractNativeBinarySpec.java

        public Tool getLinker() {
            return linker;
        }
    
        @Override
        public Tool getStaticLibArchiver() {
            return staticLibArchiver;
        }
    
        @Override
        public Tool getAssembler() {
            return assembler;
        }
    
        @Override
        public PreprocessingTool getcCompiler() {
            return cCompiler;
        }
    
        @Override
        public PreprocessingTool getCppCompiler() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  10. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.model.InvalidModelRuleException.getDescriptor()> does not have raw return type assignable to org.gradle.api.provider.Provider in (InvalidModelRuleException.java:0)
    Method <org.gradle.nativeplatform.NativeBinarySpec.getAssembler()> does not have raw return type assignable to org.gradle.api.provider.Provider in (NativeBinarySpec.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
Back to top