-
- Downloads
You need to sign in or sign up before continuing.
Use subfolders in bin dir
Creating all object files in one directory is bound to produce name clashes. RIOT developers may take care to use unique file names, but external packages surely don't. With this change all the objects of a module (e.g. `shell`) will be created in `bin/$(BOARD)/$(MODULE)`. I compared the final linker command before and after the change. The `.o` files (e.g. `startup.o`, `syscall.o` ...) are included in the same order. Neglecting the changed path name where the `.o` files reside, the linker command stays exactly the same. A major problem could be third party boards, because the location of the `startup.o` needs to the specified now in `boards/$(BOARD)/Makefile.include`, e.g. ```Makefile export UNDEF += $(BINDIR)msp430_common/startup.o ```
Showing
- Makefile.base 14 additions, 11 deletionsMakefile.base
- Makefile.modules 0 additions, 2 deletionsMakefile.modules
- boards/chronos/Makefile.include 3 additions, 1 deletionboards/chronos/Makefile.include
- boards/mbed_lpc1768/Makefile.include 2 additions, 0 deletionsboards/mbed_lpc1768/Makefile.include
- boards/msb-430-common/Makefile.include 2 additions, 0 deletionsboards/msb-430-common/Makefile.include
- boards/msba2-common/Makefile.include 2 additions, 0 deletionsboards/msba2-common/Makefile.include
- boards/native/Makefile.include 2 additions, 0 deletionsboards/native/Makefile.include
- boards/redbee-econotag/Makefile.include 3 additions, 1 deletionboards/redbee-econotag/Makefile.include
- boards/telosb/Makefile.include 3 additions, 1 deletionboards/telosb/Makefile.include
- boards/wsn430-common/Makefile.include 3 additions, 1 deletionboards/wsn430-common/Makefile.include
- cpu/arm_common/Makefile.include 1 addition, 1 deletioncpu/arm_common/Makefile.include
- cpu/lpc1768/Makefile.include 1 addition, 1 deletioncpu/lpc1768/Makefile.include
- cpu/lpc_common/Makefile.include 1 addition, 1 deletioncpu/lpc_common/Makefile.include
- cpu/mc1322x/Makefile.include 1 addition, 1 deletioncpu/mc1322x/Makefile.include
Loading
Please register or sign in to comment