码迷,mamicode.com
首页 > 系统相关 > 详细

Eclipse中移除native层编译支持

时间:2014-10-14 14:48:48      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:android   取消c++编译   

1. .project 文件

删除所有包含 org.eclipse.cdt前缀的xml结点元素。下面是一个包含cdt的完整编译配置文件。

<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
	<name>xapp</name>
	<comment></comment>
	<projects>
	</projects>
	<buildSpec>
		<buildCommand>
			<name>org.eclipse.cdt.managedbuilder.core.genmakebuilder</name>
			<triggers></triggers>
			<arguments>
			</arguments>
		</buildCommand>
		<buildCommand>
			<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
			<arguments>
			</arguments>
		</buildCommand>
		<buildCommand>
			<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
			<arguments>
			</arguments>
		</buildCommand>
		<buildCommand>
			<name>org.eclipse.jdt.core.javabuilder</name>
			<arguments>
			</arguments>
		</buildCommand>
		<buildCommand>
			<name>com.android.ide.eclipse.adt.ApkBuilder</name>
			<arguments>
			</arguments>
		</buildCommand>
		<buildCommand>
			<name>org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder</name>
			<triggers>full,incremental,</triggers>
			<arguments>
			</arguments>
		</buildCommand>
	</buildSpec>
	<natures>
		<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
		<nature>org.eclipse.jdt.core.javanature</nature>
		<nature>org.eclipse.cdt.core.cnature</nature>
		<nature>org.eclipse.cdt.core.ccnature</nature>
		<nature>org.eclipse.cdt.managedbuilder.core.managedBuildNature</nature>
		<nature>org.eclipse.cdt.managedbuilder.core.ScannerConfigNature</nature>
	</natures>
</projectDescription>

buildCommand,和natuve中的那些元素都要删掉。


2. 删掉.cproject文件,这个文件是C/C++编译配置。


3. 删掉与src/, res/同级目录的jni,以及jni下的armeabi


4. 将工程从工作区间中移除,然后再次导入。

这一步很重要,工作区间缓存了每个工程编译结果,只有这样上面的所有修改才能生效。


refhttp://pilcrowpipe.blogspot.com/2011/12/removing-native-support-from-android.html


Eclipse中移除native层编译支持

标签:android   取消c++编译   

原文地址:http://blog.csdn.net/ryfdizuo/article/details/40073593

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!