diff options
author | Sam Nelson <sam.nelson@ti.com> | 2015-10-20 01:24:39 +0000 |
---|---|---|
committer | Denys Dmytriyenko <denys@ti.com> | 2015-10-19 17:11:04 -0400 |
commit | 72deb332ebfa4213da7c5f91619fd4be7d8eb165 (patch) | |
tree | 58066c314bf5e7a95fd7503e0c8332f0a34dd6d3 /recipes-bsp/hyplnk-lld/hyplnk-lld-test_git.bb | |
parent | 5a7f78ce0723a31a6469e52254eb604ca53808d2 (diff) | |
download | meta-ti-72deb332ebfa4213da7c5f91619fd4be7d8eb165.tar.gz |
hyplnk-lld: Update to new version 2.1.0.5
- Remove seperate build for dynamic and static cases
Make now creates two test binaries one use dynamic and other using
static library
Signed-off-by: Sam Nelson <sam.nelson@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'recipes-bsp/hyplnk-lld/hyplnk-lld-test_git.bb')
-rw-r--r-- | recipes-bsp/hyplnk-lld/hyplnk-lld-test_git.bb | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/recipes-bsp/hyplnk-lld/hyplnk-lld-test_git.bb b/recipes-bsp/hyplnk-lld/hyplnk-lld-test_git.bb index 8212c971..c33e2dfe 100644 --- a/recipes-bsp/hyplnk-lld/hyplnk-lld-test_git.bb +++ b/recipes-bsp/hyplnk-lld/hyplnk-lld-test_git.bb | |||
@@ -2,22 +2,14 @@ include hyplnk-lld.inc | |||
2 | 2 | ||
3 | DEPENDS = "common-csl-ip hyplnk-lld" | 3 | DEPENDS = "common-csl-ip hyplnk-lld" |
4 | 4 | ||
5 | CHOICELIST = " yes \ | ||
6 | no \ | ||
7 | " | ||
8 | |||
9 | do_compile () { | 5 | do_compile () { |
10 | make -f makefile_armv7 clean PDK_INSTALL_PATH="${STAGING_INCDIR}" \ | 6 | make -f makefile_armv7 clean PDK_INSTALL_PATH="${STAGING_INCDIR}" \ |
11 | HYPLNK_SRC_DIR="${S}" | 7 | HYPLNK_SRC_DIR="${S}" |
12 | for device in ${DEVICELIST} | 8 | for device in ${DEVICELIST} |
13 | do | 9 | do |
14 | for choice in ${CHOICELIST} | 10 | make -f makefile_armv7 tests examples \ |
15 | do | 11 | PDK_INSTALL_PATH="${STAGING_INCDIR}" \ |
16 | make -f makefile_armv7 tests examples \ | 12 | DEVICE="$device" HYPLNK_SRC_DIR="${S}" |
17 | PDK_INSTALL_PATH="${STAGING_INCDIR}" \ | ||
18 | DEVICE="$device" HYPLNK_SRC_DIR="${S}" \ | ||
19 | USEDYNAMIC_LIB="$choice" | ||
20 | done | ||
21 | done | 13 | done |
22 | } | 14 | } |
23 | 15 | ||