gcc - Quoted CMake external objects path produces linker error -


i 'm trying build simple main.project yagarto, cmake , ecplise. problem cmake quotes path of both sources:

add_executable(icejupi.elf main.c startup_stm32f10x_hd.s)  

like (automatically genrated cmake in build.make)

myproj_elf_objects = \ "cmakefiles/myproj.elf.dir/main.c.obj" \ "cmakefiles/myproj.elf.dir/startup_stm32f10x_hd.s.obj" 

this kind of path quoting produced following linker-error:

arm-none-eabi-gcc.exe: error: no such file or directory 

is there anyway tell cmake not quoting source-pathes??


Comments

Popular posts from this blog

php - Why I am getting the Error "Commands out of sync; you can't run this command now" -

linux - Does gcc have any options to add version info in ELF binary file? -

java - Are there any classes that implement javax.persistence.Parameter<T>? -