@@ -9,6 +9,11 @@ nodist_pkgconfig_DATA = $(top_builddir)/pkgconfig/libodp.pc
.PHONY: pkgconfig/libodp.pc
KS2_PLATFORM = DEVICE_K2K
+if SDK_INSTALL_PATH_
+AM_CFLAGS += -I$(SDK_INSTALL_PATH)/usr/include
+
+AM_LDFLAGS += -L$(SDK_INSTALL_PATH)/usr/lib
+endif
PLAT_CFLAGS = -D$(KS2_PLATFORM)
PLAT_CFLAGS += -D_GNU_SOURCE -DEM_32_BIT -DTI_EM_CENTRAL_SCHED
@@ -33,5 +33,6 @@ Check README file in OpenEM root directory for build instructions.
3. Keystone2 ODP build
./bootstrap
-./configure --host=arm-linux-gnueabihf --with-platform=linux-keystone2 LDFLAGS=-L<oem-install-path>/usr/lib CFLAGS=-I<oem-install-path>/usr/include
+./configure --host=arm-linux-gnueabihf --with-platform=linux-keystone2 --with-sdk-install-path=<oem-install-path>
+# if openem is installed to the default path then you don't need to specify --with-sdk-install-path=<oem-install-path> when you run configure.
make
Signed-off-by: Anders Roxell <anders.roxell@linaro.org> Reviewed-and-Tested-by: Taras Kondratiuk <taras.kondratiuk@linaro.org> --- platform/linux-keystone2/Makefile.am | 5 +++++ platform/linux-keystone2/README | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-)