Created attachment 6176 [details] my defconfig using : git clone git://git.busybox.net/buildroot commit# latest 2015.10.04 Build with external toolchain failed. improper pre-compile condition statement. toolchain/toolchain-wrapper.c ~line 147 #elif BR_CROSS_PATH_ABS should it be: ? #elif defined BR_CROSS_PATH_ABS It works for me :) Gary
commit # 70a61bbfb3922df8a9b323023e7be555cfe1272b
indeed, it is broken since yesterday. Fixed by: commit ccdb179d24a2d99ce4f3078bfcd2ffee5af60701 Author: Peter Korsgaard <peter@korsgaard.com> Date: Mon Oct 5 08:25:17 2015 +0200 toolchain-wrapper.c: unbreak BR_CROSS_PATH_ABS handling Fixes #8386 We should check if BR_CROSS_PATH_ABS is defined, not if it evalutates to true for the pre processor. Signed-off-by: Peter Korsgaard <peter@korsgaard.com> Thanks!