# HG changeset patch
# User timkelly
# Date 1281485932 18000
# Node ID 7e50573a0115faae845532f97674624fefc9dc3e
# Parent 1d73a4591cf82f0ba1f4970d8a2b44cf5a57b521# Parent ee738187284704ed95957b35c6318ede1eca08d6
merge commit
diff -r 1d73a4591cf8 -r 7e50573a0115 builder/com.nokia.carbide.cdt.builder/src/com/nokia/carbide/cdt/builder/EpocEngineHelper.java
--- a/builder/com.nokia.carbide.cdt.builder/src/com/nokia/carbide/cdt/builder/EpocEngineHelper.java Tue Aug 10 19:07:16 2010 -0500
+++ b/builder/com.nokia.carbide.cdt.builder/src/com/nokia/carbide/cdt/builder/EpocEngineHelper.java Tue Aug 10 19:18:52 2010 -0500
@@ -2332,6 +2332,7 @@
* @param config - The Carbide build configuration to check against
* @param mmpFullPath - The path to the MMP file that builds the binary
* @return A string of the MD5 hash. Returns an empty string if the configuration is not a binary variant or cannot be determined.
+ * @deprecated - ABLD support to be removed vFuture
*/
static public String getMD5HashForBinaryVariant(final ICarbideBuildConfiguration config, final IPath mmpFullPath){
@@ -2358,6 +2359,7 @@
* @param mmpData
* @param config
* @return
+ * @deprecated - Abld support to be be removed vFuture
*/
private static File getMakeFileForSymbianBinaryVariant(IMMPData mmpData, ICarbideBuildConfiguration config){
@@ -2391,6 +2393,7 @@
* @param makefile - The build makefile to parse to check for the MD5
* @param config - The build configuration to check under
* @return The string for the MD5 hash. An empty string if it cannot be determined.
+ * @deprecated - abld support to be removed
*/
private static String getMD5VariantFromMakefile(File makefile, ICarbideBuildConfiguration config){
// We could also use the .vmap in the release folder as well.
diff -r 1d73a4591cf8 -r 7e50573a0115 builder/com.nokia.carbide.cdt.builder/src/com/nokia/carbide/cdt/builder/builder/CarbideCPPBuilder.java
--- a/builder/com.nokia.carbide.cdt.builder/src/com/nokia/carbide/cdt/builder/builder/CarbideCPPBuilder.java Tue Aug 10 19:07:16 2010 -0500
+++ b/builder/com.nokia.carbide.cdt.builder/src/com/nokia/carbide/cdt/builder/builder/CarbideCPPBuilder.java Tue Aug 10 19:18:52 2010 -0500
@@ -818,6 +818,7 @@
* @param bldmakeArgs array of String arguments to be passed to bldmake
* @param removeMarkers project markers will be removed when true
* @return true if operation was successful, false otherwise
+ * @deprecated - Abld support to be be removed vFuture
*/
public static boolean invokeBldmakeCommand(ICarbideBuildConfiguration buildConfig, CarbideCommandLauncher launcher, String[] bldmakeArgs, boolean removeMarkers) {
ICarbideProjectInfo cpi = buildConfig.getCarbideProject();
@@ -896,6 +897,7 @@
* @param config the build configuration context
* @param launcher the Carbide launcher
* @return false if makefile generation was necessary but failed, true otherwise
+ * @deprecated - Abld support to be be removed vFuture
*/
public static boolean generateBldmakeMakefilesIfNecessary(ICarbideBuildConfiguration config, CarbideCommandLauncher launcher) {
@@ -933,6 +935,7 @@
* is newer than any of the makefiles, then returns true.
* @param config - The build configuration to check the makefiles for
* @return true if makefiles need to be regenerated (bldmake bldfiles platform)
+ * @deprecated - Abld support to be be removed vFuture
*/
protected static boolean needsBldmakeMakefileGeneration(ICarbideBuildConfiguration config) {
return getBuilder(config.getCarbideProject().getProject()).needsBldmakeMakefileGeneration(config);
@@ -990,6 +993,7 @@
* @param progress monitor to allow user to cancel
* @return false if any makefile generation was necessary but failed, true otherwise
* @since 2.0
+ * @deprecated - Abld support to be be removed vFuture
*/
public static boolean generateAbldMakefilesIfNecessary(ICarbideBuildConfiguration config, CarbideCommandLauncher launcher, boolean calculateComponentLists, IProgressMonitor progress) {
@@ -1026,6 +1030,7 @@
* @param componentPath the absolute file system path of the component
* @param isTest true for test components, false otherwise
* @return false if any makefile generation was necessary but failed, true otherwise
+ * @deprecated - Abld support to be be removed vFuture
*/
protected static boolean generateAbldMakefileIfNecessary(ICarbideBuildConfiguration config, CarbideCommandLauncher launcher, IPath componentPath, boolean isTest, IProgressMonitor progress) {
return getBuilder(config.getCarbideProject().getProject()).generateAbldMakefileIfNecessary(config, launcher, componentPath, isTest, progress);
@@ -2026,6 +2031,11 @@
return false;
}
+ /**
+ * @deprecated - Abld support to be be removed vFuture
+ * @param config
+ * @return
+ */
public static IPath getBuilderMakefileDir(ICarbideBuildConfiguration config){
return getBuilder(config.getCarbideProject().getProject()).getMakefileDirectory(config);
}
diff -r 1d73a4591cf8 -r 7e50573a0115 builder/com.nokia.carbide.cdt.builder/src/com/nokia/carbide/cdt/builder/project/ICarbideProjectInfo.java
--- a/builder/com.nokia.carbide.cdt.builder/src/com/nokia/carbide/cdt/builder/project/ICarbideProjectInfo.java Tue Aug 10 19:07:16 2010 -0500
+++ b/builder/com.nokia.carbide.cdt.builder/src/com/nokia/carbide/cdt/builder/project/ICarbideProjectInfo.java Tue Aug 10 19:18:52 2010 -0500
@@ -83,7 +83,7 @@
/**
* Check whether or not all components of the inf are built or subcomponents.
- * Building from inf means that only 'abld build' is invoked rather than invoking 'abld build' on specific MMP and makefiles
+ * Building from inf means that the build system is invoked on a single bld.inf, rather than build steps for individual MMPs
* @return true when building from bld.inf
*/
public boolean isBuildingFromInf();
diff -r 1d73a4591cf8 -r 7e50573a0115 core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/api/sdk/BuildContextSBSv1.java
--- a/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/api/sdk/BuildContextSBSv1.java Tue Aug 10 19:07:16 2010 -0500
+++ b/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/api/sdk/BuildContextSBSv1.java Tue Aug 10 19:18:52 2010 -0500
@@ -40,8 +40,11 @@
import com.nokia.carbide.cpp.sdk.core.ISymbianBuilderID;
import com.nokia.carbide.cpp.sdk.core.ISymbianSDK;
import com.nokia.carbide.cpp.sdk.core.SDKCorePlugin;
-import com.nokia.cpp.internal.api.utils.core.PathUtils;
+/**
+ * @deprecated - Temporary support exists for abld on Symbian^2 but will be removed, vFuture
+ *
+ */
public class BuildContextSBSv1 implements ISBSv1BuildContext {
private String sdkId;
diff -r 1d73a4591cf8 -r 7e50573a0115 core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/api/sdk/ISBSv1BuildContext.java
--- a/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/api/sdk/ISBSv1BuildContext.java Tue Aug 10 19:07:16 2010 -0500
+++ b/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/api/sdk/ISBSv1BuildContext.java Tue Aug 10 19:18:52 2010 -0500
@@ -8,6 +8,7 @@
* Build Context specific information for the SBS/Raptor Symbian Builder.
* @see ICarbideBuildConfigation
* @since 3.0
+ * @deprecated - Temporary support exists for abld on Symbian^2 but will be removed, vFuture
*
*/
public interface ISBSv1BuildContext extends ISymbianBuildContext {
@@ -29,6 +30,7 @@
* @return The base platform string.
* @see isSymbianBinaryVariation()
* @since 2.0
+ * @deprecated
*/
public String getBasePlatformForVariation();
@@ -36,7 +38,7 @@
* Get the (abld)build arguments info. Contains pref settings from the Arguments tab.
* This only applies when building with SBSv1 (bldmake, abld)
* @return IBuildArgumentsInfo instance, never null
- *
+ * @deprecated
*/
IBuildArgumentsInfo getBuildArgumentsInfo();
@@ -44,6 +46,7 @@
* Get the (abld)build arguments info. Contains pref settings from the Arguments tab.
* This only applies when building with SBSv1 (bldmake, abld)
* @return A copy of BuildArgumentsInfo instance, never null
+ * @deprecated
*/
BuildArgumentsInfo getBuildArgumentsInfoCopy();
@@ -51,6 +54,7 @@
* Set the build arguments info for SBSv2 build arguments. This only sets values in memory, does
* not write settings to disk. See
* @return IBuildArgumentsInfo instance, never null
+ * @deprecated
*/
void setBuildArgumentsInfo(BuildArgumentsInfo bldArgInfo);
diff -r 1d73a4591cf8 -r 7e50573a0115 core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/api/sdk/ISBSv1BuildInfo.java
--- a/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/api/sdk/ISBSv1BuildInfo.java Tue Aug 10 19:07:16 2010 -0500
+++ b/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/api/sdk/ISBSv1BuildInfo.java Tue Aug 10 19:18:52 2010 -0500
@@ -22,20 +22,28 @@
/**
* Interface for SBSv1 specific build information.
+ * @since 3.0
+ * @deprecated - Temporary support exists for abld on Symbian^2 but will be removed, vFuture
*
*/
public interface ISBSv1BuildInfo extends ISDKBuildInfo {
-
+
+ /**
+ * Clears the list of macros specific to all abld build platforms
+ * @deprecated
+ */
void clearPlatformMacros();
/**
* Returns the list of all available platforms for a SDK.
* @return a list of platform names which may be empty.
+ * @deprecated
*/
List