當前位置: 首頁>>代碼示例>>Java>>正文


Java Gcc類代碼示例

本文整理匯總了Java中org.gradle.nativeplatform.toolchain.Gcc的典型用法代碼示例。如果您正苦於以下問題:Java Gcc類的具體用法?Java Gcc怎麽用?Java Gcc使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


Gcc類屬於org.gradle.nativeplatform.toolchain包,在下文中一共展示了Gcc類的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: addToolChain

import org.gradle.nativeplatform.toolchain.Gcc; //導入依賴的package包/類
@Defaults
public static void addToolChain(NativeToolChainRegistryInternal toolChainRegistry, ServiceRegistry serviceRegistry) {
    final FileResolver fileResolver = serviceRegistry.get(FileResolver.class);
    final ExecActionFactory execActionFactory = serviceRegistry.get(ExecActionFactory.class);
    final Instantiator instantiator = serviceRegistry.get(Instantiator.class);

    final BuildOperationProcessor buildOperationProcessor = serviceRegistry.get(BuildOperationProcessor.class);

    final CompilerMetaDataProviderFactory metaDataProviderFactory = serviceRegistry.get(CompilerMetaDataProviderFactory.class);

    toolChainRegistry.registerFactory(Gcc.class, new NamedDomainObjectFactory<Gcc>() {
        public Gcc create(String name) {
            return instantiator.newInstance(GccToolChain.class, instantiator, name, buildOperationProcessor, OperatingSystem.current(), fileResolver, execActionFactory, metaDataProviderFactory);
        }
    });
    toolChainRegistry.registerDefaultToolChain(GccToolChain.DEFAULT_NAME, Gcc.class);
}
 
開發者ID:lxxlxx888,項目名稱:Reer,代碼行數:18,代碼來源:GccCompilerPlugin.java

示例2: installWindows

import org.gradle.nativeplatform.toolchain.Gcc; //導入依賴的package包/類
private void installWindows() {
    final File destination = getDestinationDir();
    final File executable = getExecutable();

    installToDir(new File(destination, "lib"));

    StringBuilder toolChainPath = new StringBuilder();
    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(";");
        }

        toolChainPath.append("%PATH%");
    }


    String runScriptText =
          "\[email protected] off"
        + "\nSETLOCAL"
        + "\n" + toolChainPath
        + "\nCALL \"%~dp0lib\\" + executable.getName() + "\" %*"
        + "\nEXIT /B %ERRORLEVEL%"
        + "\nENDLOCAL"
        + "\n";
    GFileUtils.writeFile(runScriptText, getRunScript());
}
 
開發者ID:lxxlxx888,項目名稱:Reer,代碼行數:29,代碼來源:InstallExecutable.java

示例3: IncrementalNativeCompiler

import org.gradle.nativeplatform.toolchain.Gcc; //導入依賴的package包/類
public IncrementalNativeCompiler(TaskInternal task, FileHasher hasher, CompilationStateCacheFactory compilationStateCacheFactory, Compiler<T> delegateCompiler, NativeToolChain toolChain, DirectoryFileTreeFactory directoryFileTreeFactory) {
    this.task = task;
    this.hasher = hasher;
    this.compilationStateCacheFactory = compilationStateCacheFactory;
    this.delegateCompiler = delegateCompiler;
    this.directoryFileTreeFactory = directoryFileTreeFactory;
    this.importsAreIncludes = Clang.class.isAssignableFrom(toolChain.getClass()) || Gcc.class.isAssignableFrom(toolChain.getClass());
}
 
開發者ID:lxxlxx888,項目名稱:Reer,代碼行數:9,代碼來源:IncrementalNativeCompiler.java

示例4: addGccToolChain

import org.gradle.nativeplatform.toolchain.Gcc; //導入依賴的package包/類
@Mutate
public static void addGccToolChain(NativeToolChainRegistryInternal toolChainRegistry, ServiceRegistry serviceRegistry) {
    final FileResolver fileResolver = serviceRegistry.get(FileResolver.class);
    final ExecActionFactory execActionFactory = serviceRegistry.get(ExecActionFactory.class);
    final Instantiator instantiator = serviceRegistry.get(Instantiator.class);
    final CompilerMetaDataProviderFactory metaDataProviderFactory = serviceRegistry.get(CompilerMetaDataProviderFactory.class);

    toolChainRegistry.registerFactory(Gcc.class, new NamedDomainObjectFactory<Gcc>() {
        public Gcc create(String name) {
            return instantiator.newInstance(GccToolChain.class, instantiator, name, OperatingSystem.current(), fileResolver, execActionFactory, metaDataProviderFactory);
        }
    });
    toolChainRegistry.registerDefaultToolChain(GccToolChain.DEFAULT_NAME, Gcc.class);
}
 
開發者ID:Pushjet,項目名稱:Pushjet-Android,代碼行數:15,代碼來源:GccCompilerPlugin.java

示例5: IncrementalNativeCompiler

import org.gradle.nativeplatform.toolchain.Gcc; //導入依賴的package包/類
public IncrementalNativeCompiler(TaskInternal task, TaskArtifactStateCacheAccess cacheAccess, FileSnapshotter fileSnapshotter, Compiler<NativeCompileSpec> delegateCompiler, NativeToolChain toolChain) {
    this.task = task;
    this.cacheAccess = cacheAccess;
    this.fileSnapshotter = fileSnapshotter;
    this.delegateCompiler = delegateCompiler;
    this.importsAreIncludes = Clang.class.isAssignableFrom(toolChain.getClass()) || Gcc.class.isAssignableFrom(toolChain.getClass());
}
 
開發者ID:Pushjet,項目名稱:Pushjet-Android,代碼行數:8,代碼來源:IncrementalNativeCompiler.java

示例6: configureToolchain

import org.gradle.nativeplatform.toolchain.Gcc; //導入依賴的package包/類
/**
 * Configure toolchain for a platform.
 */
public static void configureToolchain(
        NativeToolChainRegistry toolchainRegistry,
        final String toolchainName,
        final NdkHandler ndkHandler) {
    final Toolchain ndkToolchain = Toolchain.getByName(toolchainName);
    toolchainRegistry.create("ndk-" + toolchainName,
            toolchainName.equals("gcc") ? Gcc.class : Clang.class,
            new Action<GccCompatibleToolChain>() {
                @Override
                public void execute(GccCompatibleToolChain toolchain) {
                    // Configure each platform.
                    for (Abi it : ndkHandler.getSupportedAbis()) {
                        final Abi abi = it;
                        toolchain.target(abi.getName(), new Action<GccPlatformToolChain>() {
                            @Override
                            public void execute(GccPlatformToolChain targetPlatform) {
                                if (Toolchain.GCC.equals(ndkToolchain)) {
                                    String gccPrefix = abi.getGccExecutablePrefix();
                                    targetPlatform.getcCompiler()
                                            .setExecutable(gccPrefix + "-gcc");
                                    targetPlatform.getCppCompiler()
                                            .setExecutable(gccPrefix + "-g++");
                                    targetPlatform.getLinker()
                                            .setExecutable(gccPrefix + "-g++");
                                    targetPlatform.getAssembler()
                                            .setExecutable(gccPrefix + "-as");
                                    targetPlatform.getStaticLibArchiver()
                                            .setExecutable(gccPrefix + "-ar");
                                }

                                // By default, gradle will use -Xlinker to pass arguments to the linker.
                                // Removing it as it prevents -sysroot from being properly set.
                                targetPlatform.getLinker().withArguments(
                                        new Action<List<String>>() {
                                            @Override
                                            public void execute(List<String> args) {
                                                args.removeAll(Collections.singleton("-Xlinker"));
                                            }
                                        });
                            }

                        });
                        toolchain.path(ndkHandler.getCCompiler(abi).getParentFile());
                    }
                }
            });
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:51,代碼來源:ToolchainConfiguration.java


注:本文中的org.gradle.nativeplatform.toolchain.Gcc類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。