summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Dowdal2015-05-13 15:47:17 -0500
committerJohn Dowdal2015-05-13 15:47:17 -0500
commitc91e36472c2fe2dfe437cda0cc3fb141f6fa9896 (patch)
tree96e6577c79646d72bdfc4d756288440b38008d04 /package.xs
parent8f9314167a28a28f108d0977090deddd24452309 (diff)
downloadpcie-lld-c91e36472c2fe2dfe437cda0cc3fb141f6fa9896.tar.gz
pcie-lld-c91e36472c2fe2dfe437cda0cc3fb141f6fa9896.tar.xz
pcie-lld-c91e36472c2fe2dfe437cda0cc3fb141f6fa9896.zip
am572x a15 and c66 projects work
Diffstat (limited to 'package.xs')
-rw-r--r--package.xs7
1 files changed, 5 insertions, 2 deletions
diff --git a/package.xs b/package.xs
index be6c639..4acd49f 100644
--- a/package.xs
+++ b/package.xs
@@ -35,9 +35,10 @@ function getLibs(prog)
35 'k2l', 35 'k2l',
36 'k2e', 36 'k2e',
37 'k2g', 37 'k2g',
38 'am57x' 38 'am571x',
39 'am572x'
39 ]; 40 ];
40 41
41 /* Search for the supported devices (defined in config.bld) */ 42 /* Search for the supported devices (defined in config.bld) */
42 for each(var device in deviceTypes) 43 for each(var device in deviceTypes)
43 { 44 {
@@ -51,6 +52,8 @@ function getLibs(prog)
51 /* Get target folder, if applicable */ 52 /* Get target folder, if applicable */
52 if ( java.lang.String(suffix).contains('66') ) 53 if ( java.lang.String(suffix).contains('66') )
53 lib = lib + "/c66"; 54 lib = lib + "/c66";
55 else if (java.lang.String(suffix).contains('a15') )
56 lib = lib + "/armv7";
54 57
55 /* Get library name with path */ 58 /* Get library name with path */
56 lib = lib + "/" + name; 59 lib = lib + "/" + name;