Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,808 for compilers (0.2 sec)

  1. src/cmd/go/alldocs.go

    //		If the package uses cgo or SWIG, these will be compiled with the
    //		OS-native compiler (typically gcc); otherwise they will
    //		trigger an error.
    //	.cc, .cpp, .cxx, .hh, .hpp, .hxx
    //		C++ source files. Only useful with cgo or SWIG, and always
    //		compiled with the OS-native compiler.
    //	.m
    //		Objective-C source files. Only useful with cgo, and always
    //		compiled with the OS-native compiler.
    //	.s, .S, .sx
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

        }
        javaLauncher = launcher
        if (jvmVersionForTest().canCompileOrRun(9)) {
            // Required by JdkTools and JdkJavaCompiler
            jvmArgs(listOf("--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED"))
            jvmArgs(listOf("--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED"))
    
            if (isUnitTest() || usesEmbeddedExecuter()) {
                jvmArgs(org.gradle.internal.jvm.JpmsConfiguration.GRADLE_DAEMON_JPMS_ARGS)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 07:43:28 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    		}
    	}
    	appendSetting("-buildmode", buildmode)
    	appendSetting("-compiler", cfg.BuildContext.Compiler)
    	if gccgoflags := BuildGccgoflags.String(); gccgoflags != "" && cfg.BuildContext.Compiler == "gccgo" {
    		appendSetting("-gccgoflags", gccgoflags)
    	}
    	if gcflags := BuildGcflags.String(); gcflags != "" && cfg.BuildContext.Compiler == "gc" {
    		appendSetting("-gcflags", gcflags)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/c/groovy/build.gradle

            }
        }
    }
    // end::executables[]
    
    // tag::compiler-args[]
    model {
        binaries {
            all {
                // Define toolchain-specific compiler and linker options
                if (toolChain in Gcc) {
                    cCompiler.args "-O2"
                    linker.args "-Xlinker", "-S"
                }
                if (toolChain in VisualCpp) {
                    cCompiler.args "/Zi"
                    linker.args "/DEBUG"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/tf_graph_to_hlo_compiler.h

    #define TENSORFLOW_COMPILER_JIT_TF_GRAPH_TO_HLO_COMPILER_H_
    
    #include <memory>
    #include <vector>
    
    #include "tensorflow/compiler/jit/tf_to_hlo_compiler.h"
    #include "tensorflow/compiler/tf2xla/xla_compiler.h"
    #include "tensorflow/compiler/tf2xla/xla_helpers.h"
    
    namespace tensorflow {
    
    class TfGraphToHloCompiler : public TfToHloCompiler {
     public:
      TfGraphToHloCompiler() = delete;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. tools/go-compile-verbose

    # This script runs can be used to emit (readable) compile tracing info when building go packages
    
    # Before usage, `go clean -cache` is suggested, otherwise you will measure cached results.
    # Cleanup: rm -f /tmp/golog; This will always append to the file so you should cleanup between each call.
    # Usage (compile all tests only): `go test -exec=true -toolexec=$PWD/tools/go-compile-verbose ./...`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 18:18:29 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/GccPlatformToolProvider.java

            GccCommandLineToolConfigurationInternal compiler = toolRegistry.getTool(compilerType);
            if (compiler == null) {
                return new ComponentNotFound<GccMetadata>("Tool " + compilerType.getToolName() + " is not available");
            }
            CommandLineToolSearchResult searchResult = toolSearchPath.locate(compiler.getToolType(), compiler.getExecutable());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/test/groovy/org/gradle/language/c/tasks/CCompileTest.groovy

        def platform = Mock(NativePlatformInternal)
        def platformToolChain = Mock(PlatformToolProvider)
        Compiler<CCompileSpec> cCompiler = Mock(Compiler)
        def pch = Mock(PreCompiledHeader)
    
        def setup() {
            cCompile = TestUtil.createTask(CCompile, project)
        }
    
        def "executes using the C Compiler"() {
            def sourceFile = temporaryFolder.createFile("sourceFile")
            def result = Mock(WorkResult)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/VisualCppPlatformToolProvider.java

            return versionAwareCompiler(outputCleaningCompiler);
        }
    
        @Override
        protected Compiler<CCompileSpec> createCCompiler() {
            CommandLineToolInvocationWorker commandLineTool = tool("C compiler", visualCpp.getCompilerExecutable());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  10. buildscripts/cross-compile.sh

    Daniel Jakots <******@****.***> 1702948102 -0500
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Dec 19 01:08:22 UTC 2023
    - 958 bytes
    - Viewed (0)
Back to top