I recently programmed some new code for my robot but get this error message. Their is no errors in the actual code. I have tried re downloading vex code with the same error.
Can you show the code?
Also the rest of the log please. The error is further up in there.
(side note, â make process closed with exit code : 2'
just means âyour code has errorsâ)
[info]: Saving Project âŚ
[info]: Project saved!
windows build for platform vexv5
vex/mkrules.mk:23: warning: overriding recipe for target âbuild/Testâ
vex/mkrules.mk:17: warning: ignoring old recipe for target âbuild/Testâ
vex/mkrules.mk:23: warning: overriding recipe for target âcodeâ
vex/mkrules.mk:17: warning: ignoring old recipe for target âcodeâ
vex/mkrules.mk:23: warning: overriding recipe for target âforâ
vex/mkrules.mk:17: warning: ignoring old recipe for target âforâ
vex/mkrules.mk:23: warning: overriding recipe for target âTowerâ
vex/mkrules.mk:17: warning: ignoring old recipe for target âTowerâ
vex/mkrules.mk:27: warning: overriding recipe for target âcodeâ
vex/mkrules.mk:23: warning: ignoring old recipe for target âcodeâ
vex/mkrules.mk:27: warning: overriding recipe for target âforâ
vex/mkrules.mk:23: warning: ignoring old recipe for target âforâ
vex/mkrules.mk:27: warning: overriding recipe for target âTowerâ
vex/mkrules.mk:23: warning: ignoring old recipe for target âTowerâ
make: Circular build/Test â build/Test dependency dropped.
make: Circular code â build/Test dependency dropped.
make: Circular code â code dependency dropped.
make: Circular for â build/Test dependency dropped.
make: Circular for â code dependency dropped.
make: Circular for â for dependency dropped.
make: Circular Tower â build/Test dependency dropped.
make: Circular Tower â code dependency dropped.
make: Circular Tower â for dependency dropped.
make: Circular Tower â Tower dependency dropped.
Usage: arm-none-eabi-objcopy [option(s)] in-file [out-file]
Copies a binary file, possibly transforming it in the process
The options are:
-I --input-target Assume input file is in format
-O --output-target Create an output file in format
-B --binary-architecture Set output arch, when input is arch-less
-F --target Set both input and output format to
âdebugging Convert debugging information, if possible
-p --preserve-dates Copy modified/access timestamps to the output
-D --enable-deterministic-archives
Produce deterministic output when stripping archives
-U --disable-deterministic-archives
Disable -D behavior (default)
-j --only-section Only copy section into the output
âadd-gnu-debuglink= Add section .gnu_debuglink linking to
-R --remove-section Remove section from the output
-S --strip-all Remove all symbol and relocation information
-g --strip-debug Remove all debugging symbols & sections
âstrip-dwo Remove all DWO sections
âstrip-unneeded Remove all symbols not needed by relocations
-N --strip-symbol Do not copy symbol
âstrip-unneeded-symbol
Do not copy symbol unless needed by
relocations
âonly-keep-debug Strip everything but the debug information
âextract-dwo Copy only DWO sections
âextract-symbol Remove section contents but keep symbols
-K --keep-symbol Do not strip symbol
âkeep-file-symbols Do not strip file symbol(s)
âlocalize-hidden Turn all ELF hidden symbols into locals
-L --localize-symbol Force symbol to be marked as a local
âglobalize-symbol Force symbol to be marked as a global
-G --keep-global-symbol Localize all symbols except
-W --weaken-symbol Force symbol to be marked as a weak
âweaken Force all global symbols to be marked as weak
-w --wildcard Permit wildcard in symbol comparison
-x --discard-all Remove all non-global symbols
-X --discard-locals Remove any compiler-generated symbols
-i --interleave [] Only copy N out of every bytes
âinterleave-width Set N for --interleave
-b --byte Select byte in every interleaved block
âgap-fill Fill gaps between sections with
âpad-to Pad the last section up to address
âset-start Set the start address to
{âchange-start|âadjust-start}
Add to the start address
{âchange-addresses|âadjust-vma}
Add to LMA, VMA and start addresses
{âchange-section-address|âadjust-section-vma} {=|+|-}
Change LMA and VMA of section by
âchange-section-lma {=|+|-}
Change the LMA of section by
âchange-section-vma {=|+|-}
Change the VMA of section by
{â[no-]change-warnings|â[no-]adjust-warnings}
Warn if a named section does not exist
âset-section-flags =
Set section 's properties to
âadd-section = Add section found in to output
ârename-section =[,] Rename section to
âlong-section-names {enable|disable|keep}
Handle long section names in Coff objects.
âchange-leading-char Force output formatâs leading character style
âremove-leading-char Remove leading character from global symbols
âreverse-bytes= Reverse bytes at a time, in output sections with content
âredefine-sym = Redefine symbol name to
âredefine-syms --redefine-sym for all symbol pairs
listed in
âsrec-len Restrict the length of generated Srecords
âsrec-forceS3 Restrict the type of generated Srecords to S3
âstrip-symbols -N for all symbols listed in
âstrip-unneeded-symbols
âstrip-unneeded-symbol for all symbols listed
in
âkeep-symbols -K for all symbols listed in
âlocalize-symbols -L for all symbols listed in
âglobalize-symbols --globalize-symbol for all in
âkeep-global-symbols -G for all symbols listed in
âweaken-symbols -W for all symbols listed in
âalt-machine-code Use the targetâs 'th alternative machine
âwritable-text Mark the output text as writable
âreadonly-text Make the output text write protected
âpure Mark the output file as demand paged
âimpure Mark the output file as impure
âprefix-symbols Add to start of every symbol name
âprefix-sections Add to start of every section name
âprefix-alloc-sections
Add to start of every allocatable
section name
âfile-alignment Set PE file alignment to
âheap [,] Set PE reserve/commit heap to /
âimage-base Set PE image base to
âsection-alignment Set PE section alignment to
âstack [,] Set PE reserve/commit stack to /
âsubsystem [:]
Set PE subsystem to [& ]
âcompress-debug-sections Compress DWARF debug sections using zlib
âdecompress-debug-sections Decompress DWARF debug sections using zlib
-v --verbose List all object files modified
@ Read options from
-V --version Display this programâs version number
-h --help Display this output
âinfo List object formats & architectures supported
arm-none-eabi-objcopy: supported targets: elf32-littlearm elf32-bigarm elf32-little elf32-big plugin srec symbolsrec verilog tekhex binary ihex
make: *** [vex/mkrules.mk:23: build/Test] Error 1
[error]: make process closed with exit code : 2
⌠interesting. You are right, the error doesnât seem to be with your code.
Itâs your project name, spaces are illegal characters in the project name. Replace them with dashes and you are all set.
Awesome i will try this thank you for the help. Surprised vex code lets me do that. This solved the problem
Having the same error here. I have Vexcode V5 text installed on 2 machines, works on one, not the other.
The first machine, where it works, is a fresh Windows computer.
The other machine, where it does not recognize âmakeâ is a command, is a development system with multiple compilers (Visual Studio in various versions, CLang, etc).
Iâm an engineer with decades of experience (software engineering), so Iâve tried the most obvious.
Unlike the response to the previous post, the project name has no spaces (itâs Billv5 - named for the bot).
I teach software development at the local HS clubâs robotics members.
Iâve removed-reinstalled VExcode v5 textâŚissue remains (V1.01 (19.10.1015))