Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for requiresDebugBinaryStripping (0.93 sec)

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

         */
        boolean producesImportLibrary();
    
        /**
         * Whether or not this tool chain requires a debuggable binary to be stripped or whether the binary is stripped by default.
         */
        boolean requiresDebugBinaryStripping();
    
        String getImportLibraryName(String libraryPath);
    
        String getSharedLibraryLinkFileName(String libraryPath);
    
        String getStaticLibraryName(String libraryPath);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/UnavailablePlatformToolProvider.java

            TreeFormatter formatter = new TreeFormatter();
            this.explain(formatter);
            return new GradleException(formatter.toString());
        }
    
        @Override
        public boolean requiresDebugBinaryStripping() {
            // Doesn't really make sense
            return true;
        }
    
        @Override
        public String getObjectFileExtension() {
            throw failure();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/AbstractPlatformToolProvider.java

        }
    
        @Override
        public boolean producesImportLibrary() {
            return false;
        }
    
        @Override
        public boolean requiresDebugBinaryStripping() {
            return true;
        }
    
        @Override
        public String getImportLibraryName(String libraryPath) {
            return getSharedLibraryLinkFileName(libraryPath);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/test/groovy/org/gradle/language/plugins/NativeBasePluginTest.groovy

            toolProvider.getSharedLibraryName(_) >> { String p -> p + ".dll" }
            toolProvider.getLibrarySymbolFileName(_) >> { String p -> p + ".dll.pdb" }
            toolProvider.requiresDebugBinaryStripping() >> true
    
            def runtimeFileProp = project.objects.fileProperty()
            def linkTaskProp = project.objects.property(LinkSharedLibrary)
            def linkFileTasKProp = project.objects.property(Task)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/main/java/org/gradle/language/plugins/NativeBasePlugin.java

                executable.getDebuggerExecutableFile().set(link.flatMap(linkExecutable -> linkExecutable.getLinkedFile()));
    
                if (executable.isDebuggable() && executable.isOptimized() && toolProvider.requiresDebugBinaryStripping()) {
                    Provider<RegularFile> symbolLocation = buildDirectory.file(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 26.1K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/VisualCppPlatformToolProvider.java

            this.workerLeaseService = workerLeaseService;
        }
    
        @Override
        public boolean producesImportLibrary() {
            return true;
        }
    
        @Override
        public boolean requiresDebugBinaryStripping() {
            return false;
        }
    
        @Override
        public String getSharedLibraryLinkFileName(String libraryName) {
            return withExtension(getSharedLibraryName(libraryName), ".lib");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 16.8K bytes
    - Viewed (0)
Back to top