]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - keystone-rtos/mcbsp-lld.git/blobdiff - package.xs
Merge pull request #10 in PROCESSOR-SDK/mcbsp-lld from PRSDK-3669 to master
[keystone-rtos/mcbsp-lld.git] / package.xs
old mode 100755 (executable)
new mode 100644 (file)
index c6259ef..9978fe3
@@ -31,7 +31,7 @@ function getLibs(prog)
     /* Device types supported */
     var deviceTypes = [
                         'k2g',
-                        'c674x',
+                        'omapl138',
                         'c6657'
                       ];
     
@@ -48,6 +48,19 @@ function getLibs(prog)
     /* Get target folder, if applicable */
     if ( java.lang.String(suffix).contains('66') )
         lib = lib + "/c66";
+       else if ( java.lang.String(suffix).contains('674') )
+        lib = lib + "/c674";
+
+    var libProfiles = ["debug", "release"];
+    for each(var profile in libProfiles)
+    {
+        if (this.Settings.libProfile.equals(profile))
+        {
+            lib = lib + "/" + profile;
+            break;
+        }
+    }
+
 
     /* Get library name with path */
     lib = lib + "/" + name;