The work is progressing.
Is there a specific mechanism to check the location of tool_path? I mean, this works:
#
tool_path {name: "ar" path : "/usr/bin/ar" }
tool_path {name: "cpp" path : "/usr/bin/cpp" }
tool_path {name: "dwp" path : "/usr/bin/dwp" }
tool_path {name: "gcc" path : "/usr/bin/gcc" }
tool_path {name: "gcov" path : "/usr/bin/gcov" }
tool_path {name: "ld" path : "/usr/bin/ld" }
tool_path {name: "nm" path : "/usr/bin/nm" }
tool_path {name: "objcopy" path: "/usr/bin/objcopy" }
tool_path {name: "objdump" path: "/usr/bin/objdump" }
tool_path {name: "strip" path : "/usr/bin/strip" }
#
I suppose that if I put gcc somewhere else, let's say into /tmp/bin/..., is the tool_path check still Ok?
Is there something checking the available PATH on the system?
I ask this because I have an error message:
fatal error: cannot find 'ld'
for a gcc in a unusual location.
Thanks.