JUST DOWNLOAD THE CYPRESS version of ECLIPSE form their website and you will be good.
**** Build of configuration Debug for project tst_IMGcreation ****
cs-make all
Building file: ../cyfx_gcc_startup.S
Invoking: ARM Sourcery Windows GCC Assembler
arm-none-eabi-gcc -x assembler-with-cpp -I“C:\Program Files (x86)\Cypress\EZ-USB FX3 SDK\1.3\\firmware\u3p_firmware\inc” -Wall -c -fmessage-length=0 -MMD -MP -MF"cyfx_gcc_startup.d" -MT"cyfx_gcc_startup.d" -mcpu=arm926ej-s -mthumb-interwork -g3 -gdwarf-2 -o"cyfx_gcc_startup.o" "../cyfx_gcc_startup.S"
cygwin warning:
MS-DOS style path detected: C:\Users\Akshay\workspace\tst_IMGcreation\Debug
Preferred POSIX equivalent is: /cygdrive/c/Users/Akshay/workspace/tst_IMGcreation/Debug
CYGWIN environment variable option "nodosfilewarning" turns off this warning.
Consult the user's guide for more details about POSIX paths:
http://cygwin.com/cygwin-ug-net/using.html#using-pathnames
/usr/bin/sh: -c: line 0: syntax error near unexpected token `('/usr/bin/sh: -c: line 0: `arm-none-eabi-gcc -x assembler-with-cpp -I“C:\Program Files (x86)\Cypress\EZ-USB FX3 SDK\1.3\firmware\u3p_firmware\inc� -Wall -c -fmessage-length=0 -MMD -MP -MF"cyfx_gcc_startup.d" -MT"cyfx_gcc_startup.d" -mcpu=arm926ej-s -mthumb-interwork -g3 -gdwarf-2 -o"cyfx_gcc_startup.o" "../cyfx_gcc_startup.S"'cs-make: *** [cyfx_gcc_startup.o] Error 1
----------------------------------------------------------------------------------------------------------
Maybe its cause of the ".... program Files (... " this bracket cannot be recognizes! This is silly! It such a common thing...
POSSIBLE SOLUTION:
form some blog online:
BUT:
Where is the bash file ?? How do I locate the bash file!
FINAL solution for path:
POSSIBLE SOLUTION:
form some blog online:
The script does not begin with a shebang line, so the kernel executes it with/bin/sh
. On Ubuntu,/bin/sh
is dash, a shell designed for fast startup and execution with only standard features. When dash reaches line 68, it sees a syntax error: that parenthesis doesn't mean anything to it in context.
Since dash (like all other shells) is an interpreter, it won't complain until the execution reaches the problematic line. So even if the script successfully started at some point in your testing, it would have aborted once line 68 was reached.
The shebang line must be the very first thing in the file. Since you use bash features, the first line of the file must be#!/bin/bash
or#!/usr/bin/env bash
.
BUT:
Where is the bash file ?? How do I locate the bash file!
FINAL solution for path:
C\:/Program\ Files\ \(x86\)/Cypress/EZ\-USB\ FX3\ SDK/1.3/firmware/u3p_firmware/inc”
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.