Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 234 for Gcc (0.02 sec)

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

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.toolchain;
    
    import org.gradle.api.Incubating;
    
    /**
     * The <a href="http://gcc.gnu.org/">GNU GCC</a> tool chain.
     */
    @Incubating
    public interface Gcc extends GccCompatibleToolChain {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 835 bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    			n := &Name{Go: s, C: s}
    			names = append(names, n)
    			optional[n] = true
    		}
    
    		// Otherwise, we'll need to find out from gcc.
    		names = append(names, n)
    	}
    
    	// Bypass gcc if there's nothing left to find out.
    	if len(names) == 0 {
    		return needType
    	}
    
    	// Coerce gcc into telling us whether each name is a type, a value, or undeclared.
    	// For names, find out whether they are integer constants.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. src/debug/dwarf/testdata/line-gcc-zstd.elf

    Ian Lance Taylor <******@****.***> 1677882584 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/resources/META-INF/gradle-plugins/org.gradle.gcc-compiler.properties

    Sterling Greene <******@****.***> 1700166003 -0500
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 83 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/dsl/org.gradle.nativeplatform.toolchain.Gcc.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProviderTest.groovy

    Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-linux-gnu/4.9
    Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-linux-gnu/4.9.3
    Found candidate GCC installation: /usr/lib/gcc/i686-linux-gnu/4.8
    Found candidate GCC installation: /usr/lib/gcc/i686-linux-gnu/4.8.4
    Found candidate GCC installation: /usr/lib/gcc/i686-linux-gnu/4.9
    Found candidate GCC installation: /usr/lib/gcc/i686-linux-gnu/4.9.3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 06:01:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. pkg/controller/podgc/gc_controller.go

    	metrics.RegisterMetrics()
    	return gcc
    }
    
    func (gcc *PodGCController) Run(ctx context.Context) {
    	logger := klog.FromContext(ctx)
    
    	defer utilruntime.HandleCrash()
    
    	logger.Info("Starting GC controller")
    	defer gcc.nodeQueue.ShutDown()
    	defer logger.Info("Shutting down GC controller")
    
    	if !cache.WaitForNamedCacheSync("GC", ctx.Done(), gcc.podListerSynced, gcc.nodeListerSynced) {
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppMissingToolchainIntegrationTest.groovy

      - Tool chain 'gcc' (GNU GCC):
          - Could not find C++ compiler 'g++'. Searched in:
              - ${file('gcc-bin')}
      - Tool chain 'clang' (Clang):
          - Could not find C++ compiler 'clang++'. Searched in:
              - ${file('clang-bin')}""")
            }
        }
    
        @ToBeFixedForConfigurationCache
        def "can build with Clang when gcc is available but g++ is not available"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/GccToolChain.java

    import org.gradle.nativeplatform.toolchain.Gcc;
    import org.gradle.nativeplatform.toolchain.internal.gcc.metadata.GccMetadata;
    import org.gradle.nativeplatform.toolchain.internal.gcc.metadata.SystemLibraryDiscovery;
    import org.gradle.nativeplatform.toolchain.internal.metadata.CompilerMetaDataProviderFactory;
    import org.gradle.process.internal.ExecActionFactory;
    
    
    /**
     * Compiler adapter for GCC.
     */
    @NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/cgo_path.txt

    stderr '^cgo: C compiler "(clang|gcc)" not found: exec: "(clang|gcc)": cannot run executable found relative to current directory'
    ! exists p/bug.txt
    
    -- go.mod --
    module m
    
    -- m.go --
    package m
    
    import _ "m/p"
    
    -- p/p.go --
    package p
    
    // #define X 1
    import "C"
    
    -- p/gcc --
    #!/bin/sh
    echo ran gcc >bug.txt
    -- p/clang --
    #!/bin/sh
    echo ran clang >bug.txt
    -- p/gcc.bat --
    echo ran gcc >bug.txt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 17:09:07 UTC 2023
    - 952 bytes
    - Viewed (0)
Back to top