diff options
author | wuyizhong <wuyizhong@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-04-26 02:44:39 +0000 |
---|---|---|
committer | wuyizhong <wuyizhong@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-04-26 02:44:39 +0000 |
commit | 61746a87be58d12489f9c82e2e6e2fd5837626fc (patch) | |
tree | 952cf88f5f1d6e1ff6dbf60e4a8ddf67e0d3b9a2 /Tools/Source | |
parent | 6cfb0c24a8c22b1379f72f089334112b3d271f9a (diff) | |
download | edk2-platforms-61746a87be58d12489f9c82e2e6e2fd5837626fc.tar.xz |
Fix a bug on GenBuild and have a minor update on BuildMacro.xml
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@35 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Tools/Source')
3 files changed, 15 insertions, 13 deletions
diff --git a/Tools/Source/GenBuild/org/tianocore/build/ExpandTask.java b/Tools/Source/GenBuild/org/tianocore/build/ExpandTask.java index d3df8cf7a6..c4c53e04b9 100644 --- a/Tools/Source/GenBuild/org/tianocore/build/ExpandTask.java +++ b/Tools/Source/GenBuild/org/tianocore/build/ExpandTask.java @@ -40,11 +40,13 @@ public class ExpandTask extends Task { Set <code>LIBS</code> for further build usage.
**/
public void execute() throws BuildException {
-
- String[] libraries = GlobalData.getModuleLibrary(getProject().getProperty("BASE_NAME"));
+ String basename = getProject().getProperty("BASE_NAME");
+ String arch = getProject().getProperty("ARCH");
+ arch = arch.toUpperCase();
+ String[] libraries = GlobalData.getModuleLibrary(basename, arch);
String str = "";
for (int i = 0; i < libraries.length; i ++){
- str += " " + GlobalData.getLibrary(libraries[i]);
+ str += " " + GlobalData.getLibrary(libraries[i], arch);
}
getProject().setProperty("LIBS", str);
diff --git a/Tools/Source/GenBuild/org/tianocore/build/GenBuildTask.java b/Tools/Source/GenBuild/org/tianocore/build/GenBuildTask.java index 2d91991b8a..2104a51e62 100644 --- a/Tools/Source/GenBuild/org/tianocore/build/GenBuildTask.java +++ b/Tools/Source/GenBuild/org/tianocore/build/GenBuildTask.java @@ -237,8 +237,8 @@ public class GenBuildTask extends Task { // Update flags like CC_FLAGS, LIB_FLAGS etc.
//
flagsSetup();
- GlobalData.addLibrary(baseName, getProject().getProperty("BIN_DIR") + File.separatorChar + baseName + ".lib");
- GlobalData.addModuleLibrary(baseName, libraries);
+ GlobalData.addLibrary(baseName, arch, getProject().getProperty("BIN_DIR") + File.separatorChar + baseName + ".lib");
+ GlobalData.addModuleLibrary(baseName, arch, libraries);
//
// If ComponentType is USER_DEFINED,
// then call the exist BaseName_build.xml directly.
diff --git a/Tools/Source/GenBuild/org/tianocore/build/global/GlobalData.java b/Tools/Source/GenBuild/org/tianocore/build/global/GlobalData.java index 611758a4ef..e457d6dbe9 100644 --- a/Tools/Source/GenBuild/org/tianocore/build/global/GlobalData.java +++ b/Tools/Source/GenBuild/org/tianocore/build/global/GlobalData.java @@ -326,8 +326,8 @@ public class GlobalData { @param moduleName the base name of the module
@return the libraries which the module depends on
**/
- public synchronized static String[] getModuleLibrary(String moduleName) {
- Set<String> set = moduleLibraryMap.get(moduleName);
+ public synchronized static String[] getModuleLibrary(String moduleName, String arch) {
+ Set<String> set = moduleLibraryMap.get(moduleName + "-" + arch);
return set.toArray(new String[set.size()]);
}
@@ -337,8 +337,8 @@ public class GlobalData { @param moduleName the base name of the module
@param libraryList the libraries which the module depends on
**/
- public synchronized static void addModuleLibrary(String moduleName, Set<String> libraryList) {
- moduleLibraryMap.put(moduleName, libraryList);
+ public synchronized static void addModuleLibrary(String moduleName, String arch, Set<String> libraryList) {
+ moduleLibraryMap.put(moduleName + "-" + arch, libraryList);
}
/**
@@ -347,8 +347,8 @@ public class GlobalData { @param library the base name of the library
@return the library absolute file name
**/
- public synchronized static String getLibrary(String library) {
- return libraries.get(library);
+ public synchronized static String getLibrary(String library, String arch) {
+ return libraries.get(library + "-" + arch);
}
/**
@@ -357,8 +357,8 @@ public class GlobalData { @param library the base name of the library
@param resultPath the library absolute file name
**/
- public synchronized static void addLibrary(String library, String resultPath) {
- libraries.put(library, resultPath);
+ public synchronized static void addLibrary(String library, String arch, String resultPath) {
+ libraries.put(library + "-" + arch, resultPath);
}
/**
|