Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getCompilerExecutable (0.41 sec)

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

    package org.gradle.nativeplatform.toolchain.internal;
    
    import java.io.File;
    
    /**
     * Tools for compiling and linking native languages.
     */
    public interface NativeLanguageTools extends ExecutableTools {
        File getCompilerExecutable();
    
        File getLinkerExecutable();
    
        File getArchiverExecutable();
    
        File getAssemblerExecutable();
    
        File getBinDir();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 981 bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/VisualCppPlatformToolProvider.java

                case CPP_COMPILER:
                    return new CommandLineToolSearchResult() {
                        @Override
                        public File getTool() {
                            return visualCpp.getCompilerExecutable();
                        }
    
                        @Override
                        public boolean isAvailable() {
                            return true;
                        }
    
                        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/cpp/CompilationDetails.java

         * Returns the compiler executable that is used to compile this binary.
         *
         * @return The compiler executable or {@code null} if the compiler for this binary is not available.
         */
        @Nullable
        File getCompilerExecutable();
    
        /**
         * Returns the working directory that the compiler is invoked from when compiling the source of this binary.
         */
        File getCompileWorkingDir();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. platforms/native/tooling-native/src/main/java/org/gradle/language/cpp/internal/tooling/DefaultCompilationDetails.java

            this.macroDefines = macroDefines;
            this.additionalArgs = additionalArgs;
        }
    
        public LaunchableGradleTask getCompileTask() {
            return compileTask;
        }
    
        public File getCompilerExecutable() {
            return compilerExe;
        }
    
        public File getCompileWorkingDir() {
            return workingDir;
        }
    
        public List<DefaultSourceFile> getSources() {
            return sources;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/ArchitectureSpecificVisualCpp.java

        @Override
        public File getBinDir() {
            return binDir;
        }
    
        @Override
        public List<File> getPath() {
            return paths;
        }
    
        @Override
        public File getCompilerExecutable() {
            return new File(binDir, COMPILER_FILENAME);
        }
    
        @Override
        public File getLinkerExecutable() {
            return new File(binDir, LINKER_FILENAME);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/AvailableToolChains.java

                version = install.getVersion();
                org.gradle.nativeplatform.toolchain.internal.msvcpp.VisualCpp visualCpp = install.getVisualCpp().forPlatform(targetPlatform);
                cppCompiler = visualCpp.getCompilerExecutable();
                pathEntries.addAll(visualCpp.getPath());
                return this;
            }
    
            @Override
            public boolean meets(ToolChainRequirement requirement) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 41.6K bytes
    - Viewed (0)
Back to top