Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for requiresDebugBinaryStripping (0.41 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)
Back to top