This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Building error while compiling IMGLIB on Windows



Hello All,
We are trying to modify IMGLIB source code to handle whole image operation instead of one row in few functions like erosion , dilation and 7*7 convolution.
Can you please tell me the steps required for building IMGLIB from scratch ?
I went through User Guide and tried option#2 , compiling from command line. We modified Makefile for adding paths from VSDK for compiler and XDC tools and imglib. Please find below changes in makefile.
I am not sure what path needs to be set for EPI_INSTALL_DIR and SWTOOLS_INSTALL_DIR .
I am compiling it from MinGW and it throws following error:
c:\MinGW\bin\sed.exe: -e expression #4, char 1: unknown command: `C'
 
Thanks for any insights on the issue.
 
Modified Makefile :
 

# C6X_GEN_INSTALL_DIR - C6x Code gen tools install directory
export C6X_GEN_INSTALL_DIR ?= E:/VSDK/ti_components/cg_tools/windows/C6000_7.4.2

# PATH TO XDC INSTALL DIR
export XDC_INSTALL_DIR ?= E:/VSDK/ti_components/os_tools/windows/xdctools_3_32_00_06_core

# PATH TO EPI INSTALL DIR
export EPI_INSTALL_DIR ?= C:/IMGLIB_Tools

# PATH TO SWTOOLS INSTALL DIR
export SWTOOLS_INSTALL_DIR ?= C:/IMGLIB_Install

# PATH TO IMGLIB INSTALL DIR
export IMGLIB_INSTALL_DIR ?= E:/VSDK/ti_components/algorithms_codecs/imglib_c66x_3_2_0_1

# ROOT Directory
export ROOTDIR := ../..

# INCLUDE Directory
export INCDIR := $(EPI_INSTALL_DIR)/CCSV5_4_0/ccsv5/packages;$(EPI_INSTALL_DIR)/xdc_eclipse_plugin_gen/20091203;$(XDC_INSTALL_DIR)/packages;$(SWTOOLS_INSTALL_DIR)/swtools;$(IMGLIB_INSTALL_DIR);$(ROOTDIR)

# Common Macros used in make

Thanks,
Kapil Mehta