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
Post a Comment