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.

OMAP-L138: Linux SDK Documentation Issue

Part Number: OMAP-L138

Hi,

I came across an issue in section 1.1.8. GCC ToolChain (link below) in the section at the very bottom Configure/Autotools:

http://software-dl.ti.com/processor-sdk-linux/esd/docs/latest/linux/Overview/GCC_ToolChain.html

The line ./configure –host=i686 –disable-deinterlace2 –disable-x264 has an issue where each is not a -.

When I copied and pasted the line ./configure –host=i686 –disable-deinterlace2 –disable-x264 into my command line and executed it the output was:

configure: error: invalid variable name: –host

After some head scratching I modified ./configure –host=i686 –disable-deinterlace2 –disable-x264 to ./configure -host=i686 -disable-deinterlace2 -disable-x264 and the command was taken.

I hope this helps out anyone else in the same situation.

Ben