Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 234 for Gcc (0.02 sec)

  1. src/cmd/cgo/internal/testsanitizers/cc_test.go

    				// Compiler does not support "--version" flag: not Clang or GCC.
    				return nil
    			}
    
    			var match [][]byte
    			if bytes.HasPrefix(out, []byte("gcc")) {
    				compiler.name = "gcc"
    				cmd, err := cc("-dumpfullversion", "-dumpversion")
    				if err != nil {
    					return err
    				}
    				out, err := cmd.Output()
    				if err != nil {
    					// gcc, but does not support gcc's "-v" flag?!
    					return err
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 20:00:56 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/GccCompatibleNativeCompilerTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.toolchain.internal.gcc
    
    import org.gradle.nativeplatform.toolchain.internal.NativeCompileSpec
    import org.gradle.nativeplatform.toolchain.internal.NativeCompilerTest
    
    abstract class GccCompatibleNativeCompilerTest extends NativeCompilerTest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. pkg/controller/podgc/gc_controller_test.go

    			pods := []*v1.Pod{test.pod}
    
    			client := setupNewSimpleClient(nil, pods)
    			gcc, podInformer, _ := NewFromClient(ctx, client, -1)
    			gcc.quarantineTime = time.Duration(-1)
    			podInformer.Informer().GetStore().Add(test.pod)
    			gcc.gc(ctx)
    
    			actions := client.Actions()
    
    			var patchAction clienttesting.PatchAction
    			var deleteAction clienttesting.DeleteAction
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
  4. src/cmd/dist/buildgo.go

    	}
    	fmt.Fprintf(&buf, "\t}\n")
    	if cc := defaultcc[""]; cc != "" {
    		fmt.Fprintf(&buf, "\treturn %s\n", quote(cc))
    	} else {
    		clang, gcc := "clang", "gcc"
    		if strings.HasSuffix(name, "CXX") {
    			clang, gcc = "clang++", "g++"
    		}
    		fmt.Fprintf(&buf, "\tswitch goos {\n")
    		fmt.Fprintf(&buf, "\tcase ")
    		for i, os := range clangos {
    			if i > 0 {
    				fmt.Fprintf(&buf, ", ")
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 20:44:00 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/NativeBinaryFixture.groovy

                // There is not a built-in tool for querying pdb files, so we just check that the debug file exists
                assertDebugFileExists()
            } else if (toolChain.meets(ToolChainRequirement.GCC) && OperatingSystem.current().windows) {
                // Currently cannot probe the actual symbols yet, just verify that there are some
                binaryInfo.assertHasDebugSymbols()
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/GccCompilerArgsTransformer.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.toolchain.internal.gcc;
    
    import org.gradle.nativeplatform.platform.NativePlatform;
    import org.gradle.nativeplatform.toolchain.internal.ArgsTransformer;
    import org.gradle.nativeplatform.toolchain.internal.MacroArgsConverter;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/MultipleNativeToolChainIntegrationTest.groovy

    plugins { id 'cpp' }
    """
    
            helloWorld.writeSources(file("src/main"))
        }
    
        @Requires(UnitTestPreconditions.CanInstallExecutable)
        @RequiresInstalledToolChain(ToolChainRequirement.GCC)
        @ToBeFixedForConfigurationCache
        def "can build with multiple tool chains"() {
            AvailableToolChains.InstalledToolChain x86ToolChain = OperatingSystem.current().isWindows() ?
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/cpp/basic/groovy/build.gradle

        // Define a compiler options
        compilerArgs.add '-W3'
    
        // Define toolchain-specific compiler options
        compilerArgs.addAll toolChain.map { toolChain ->
            if (toolChain in [ Gcc, Clang ]) {
                return ['-O2', '-fno-access-control']
            } else if (toolChain in VisualCpp) {
                return ['/Zi']
            }
            return []
        }
    }
    // end::cpp-compiler-options-all-variants[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChainTest.groovy

    import org.gradle.nativeplatform.toolchain.internal.PlatformToolProvider
    import org.gradle.nativeplatform.toolchain.internal.ToolType
    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.CompilerMetaDataProvider
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/InstallExecutable.java

            StringBuilder toolChainPath = new StringBuilder();
    
            NativeToolChain toolChain = getToolChain().get();
            if (toolChain instanceof Gcc) {
                // Gcc on windows requires the path to be set
                toolChainPath.append("SET PATH=");
                for (File pathEntry : ((Gcc) toolChain).getPath()) {
                    toolChainPath.append(pathEntry.getAbsolutePath()).append(";");
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top