tools build: Add new build supportAdding new build framework into 'tools/build' to be used by tools.There's no change for actual building at this point, it comes in thenext patches.The idea an
tools build: Add new build supportAdding new build framework into 'tools/build' to be used by tools.There's no change for actual building at this point, it comes in thenext patches.The idea and more details are explained in the'tools/build/Documentation/Build.txt' file.I adopted everything from the kernel build system, with some changes toallow for multiple binaries build definitions.While the kernel's build output is single image (forget modules) we needto be able to build several binaries/libraries.The basic idea is that sser provides 'Build' files with objectsdefinitions like: perf-y += a.o perf-y += b.o libperf-y += c.o libperf-y += d.oand the build framework outputs files: perf-in.o # a.o, b.o compiled in libperf-in.o # c.o, d.o compiled inSigned-off-by: Jiri Olsa <[email protected]>Tested-by: Sukadev Bhattiprolu <[email protected]>Tested-by: Will Deacon <[email protected]>Cc: Alexis Berlemont <[email protected]>Cc: Borislav Petkov <[email protected]>Cc: Corey Ashford <[email protected]>Cc: David Ahern <[email protected]>Cc: Frederic Weisbecker <[email protected]>Cc: Namhyung Kim <[email protected]>Cc: Paul Mackerras <[email protected]>Cc: Peter Zijlstra <[email protected]>Cc: Stephane Eranian <[email protected]>Link: http://lkml.kernel.org/n/[email protected]Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
show more ...