Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for getLinker (0.36 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/SwiftcPlatformToolChain.java

        /**
         * Returns the compiler tool.
         */
        CommandLineToolConfiguration getSwiftCompiler();
    
        /**
         * Returns the linker tool.
         */
        CommandLineToolConfiguration getLinker();
    
        /**
         * Returns the settings to use for the archiver.
         *
         * @since 4.5
         */
        CommandLineToolConfiguration getStaticLibArchiver();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/GccPlatformToolChain.java

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

         * 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.
         */
        CommandLineToolConfiguration getStaticLibArchiver();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChain.java

                gccToolChain.getcCompiler().withArguments(m32args);
                gccToolChain.getObjcCompiler().withArguments(m32args);
                gccToolChain.getObjcppCompiler().withArguments(m32args);
                gccToolChain.getLinker().withArguments(m32args);
                gccToolChain.getAssembler().withArguments(m32args);
    
            }
        }
    
        private static class Intel64Architecture implements TargetPlatformConfiguration {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 20K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/DefaultSwiftcPlatformToolChain.java

        }
    
        @Override
        public CommandLineToolConfiguration getSwiftCompiler() {
            return tools.get(ToolType.SWIFT_COMPILER);
        }
    
        @Override
        public CommandLineToolConfiguration getLinker() {
            return tools.get(ToolType.LINKER);
        }
    
        @Override
        public CommandLineToolConfiguration getStaticLibArchiver() {
            return tools.get(ToolType.STATIC_LIB_ARCHIVER);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. 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");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/DefaultVisualCppPlatformToolChain.java

        }
    
        @Override
        public CommandLineToolConfiguration getAssembler() {
            return tools.get(ToolType.ASSEMBLER);
        }
    
        @Override
        public CommandLineToolConfiguration getLinker() {
            return tools.get(ToolType.LINKER);
        }
    
        @Override
        public CommandLineToolConfiguration getStaticLibArchiver() {
            return tools.get(ToolType.STATIC_LIB_ARCHIVER);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/DefaultGccPlatformToolChain.java

        @Override
        public GccCommandLineToolConfigurationInternal getAssembler() {
            return tools.get(ToolType.ASSEMBLER);
        }
    
        @Override
        public GccCommandLineToolConfigurationInternal getLinker() {
            return tools.get(ToolType.LINKER);
        }
    
        @Override
        public GccCommandLineToolConfigurationInternal getStaticLibArchiver() {
            return tools.get(ToolType.STATIC_LIB_ARCHIVER);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/NativeBinarySpec.java

        /**
         * The configuration of the linker used when linking this binary.
         *
         * Valid for {@link SharedLibraryBinarySpec} and {@link NativeExecutableBinarySpec}.
         */
        Tool getLinker();
    
        /**
         * The configuration of the static library archiver used when creating this binary.
         *
         * Valid for {@link StaticLibraryBinarySpec}.
         */
        Tool getStaticLibArchiver();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/SwiftPlatformToolProvider.java

            return super.newCompiler(spec);
        }
    
        @Override
        protected Compiler<LinkerSpec> createLinker() {
            CommandLineToolConfigurationInternal linkerTool = (CommandLineToolConfigurationInternal) toolRegistry.getLinker();
            SwiftLinker swiftLinker = new SwiftLinker(buildOperationExecutor, commandLineTool(ToolType.LINKER, "swiftc"), context(linkerTool), workerLeaseService);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.4K bytes
    - Viewed (0)
Back to top