Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getXcrunFlags (0.29 sec)

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

        private File cachedLocation;
    
        protected AbstractLocator(ExecActionFactory execActionFactory) {
            this.execActionFactory = execActionFactory;
        }
    
        protected abstract List<String> getXcrunFlags();
    
        public File find() {
            synchronized (this) {
                if (cachedLocation == null) {
                    ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/xcode/MacOSSdkPlatformPathLocator.java

        @Inject
        public MacOSSdkPlatformPathLocator(ExecActionFactory execActionFactory) {
            super(execActionFactory);
        }
    
        @Override
        protected List<String> getXcrunFlags() {
            return ImmutableList.of("--show-sdk-platform-path");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/xcode/MacOSSdkPathLocator.java

        @Inject
        public MacOSSdkPathLocator(ExecActionFactory execActionFactory) {
            super(execActionFactory);
        }
    
        @Override
        protected List<String> getXcrunFlags() {
            return ImmutableList.of("--show-sdk-path");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/xcode/SwiftStdlibToolLocator.java

        @Inject
        public SwiftStdlibToolLocator(ExecActionFactory execActionFactory) {
            super(execActionFactory);
        }
    
        @Override
        protected List<String> getXcrunFlags() {
            return ImmutableList.of("--find", "swift-stdlib-tool");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top