Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for getInstallName (0.71 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/GccLinkerTest.groovy

            spec.getSystemArgs() >> ['-sys1', '-sys2']
            spec.getArgs() >> ['-arg1', '-arg2']
            spec.getOutputFile() >> outputFile
            spec.getLibraries() >> []
            spec.getLibraryPath() >> []
            spec.getInstallName() >> "installName"
            spec.getTargetPlatform() >> new DefaultNativePlatform("default")
            spec.getObjectFiles() >> [testDir.file("one.o"), testDir.file("two.o")]
            spec.getOperationLogger() >> operationLogger
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/LinkSharedLibrary.java

         *
         * @since 5.1
         */
        @Optional
        @Input
        public Property<String> getInstallName() {
            return installName;
        }
    
        @Override
        protected LinkerSpec createLinkerSpec() {
            Spec spec = new Spec();
            spec.setInstallName(getInstallName().getOrNull());
            spec.setImportLibrary(importLibrary.getAsFile().getOrNull());
            return spec;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/SharedLibraryLinkerSpec.java

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.internal;
    
    import java.io.File;
    
    public interface SharedLibraryLinkerSpec extends LinkerSpec {
        String getInstallName();
    
        File getImportLibrary();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 807 bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/GccLinker.java

                }
    
                return args;
            }
    
            private void maybeSetInstallName(SharedLibraryLinkerSpec spec, List<String> args) {
                String installName = spec.getInstallName();
                OperatingSystem targetOs = spec.getTargetPlatform().getOperatingSystem();
    
                if (installName == null || targetOs.isWindows()) {
                    return;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/swift/SwiftLinkerTest.groovy

            spec.getSystemArgs() >> []
            spec.getArgs() >> []
            spec.getOutputFile() >> outputFile
            spec.getLibraries() >> []
            spec.getLibraryPath() >> []
            spec.getInstallName() >> "installName"
            spec.getTargetPlatform() >> platform
            spec.getObjectFiles() >> [testDir.file("one.o")]
            spec.getOperationLogger() >> operationLogger
    
            and:
            linker.execute(spec)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/plugins/NativeComponentModelPlugin.java

                        linkTask.getTargetPlatform().set(binary.getTargetPlatform());
                        linkTask.getLinkedFile().set(binary.getSharedLibraryFile());
                        linkTask.getInstallName().set(binary.getSharedLibraryFile().getName());
                        linkTask.getLinkerArgs().set(binary.getLinker().getArgs());
                        linkTask.getImportLibrary().set(binary.getSharedLibraryLinkFile());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24.1K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/plugins/NativeBasePlugin.java

                        Provider<String> installName = task.getLinkedFile().getLocationOnly().map(linkedFile -> linkedFile.getAsFile().getName());
                        task.getInstallName().set(installName);
                    }
                    task.getTargetPlatform().set(targetPlatform);
                    task.getToolChain().set(toolChain);
                    task.getDebuggable().set(library.isDebuggable());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 26.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    To expand our idiomatic <<lazy_configuration.adoc#lazy_configuration, Provider API>> practices, the install name property from `org.gradle.nativeplatform.tasks.LinkSharedLibrary` is affected by this change.
    
    - `getInstallName()` was changed to return a `Property`.
    - `setInstallName(String)` was removed. Use `Property.set()` instead.
    
    ==== Passing arguments to Windows Resource Compiler
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
Back to top