Changeset 279188c0 in mainline for boot/Makefile


Ignore:
Timestamp:
2018-11-09T08:42:26Z (6 years ago)
Author:
Vojtech Horky <vojtech.horky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
86aad6f
Parents:
cdf6066
Message:

Add missing libs when CONFIG_DEVEL_FILES is set

We need to add the start files (crt*.o) and also libgcc as it provides
us with softint and softfloat functions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/Makefile

    rcdf6066 r279188c0  
    6565        cp -r -L "$(ROOT_PATH)/abi/include/." "$(DIST_PATH)/inc/c/"
    6666        cp -r -L "$(USPACE_PATH)/lib/c/arch/$(UARCH)/include/." "$(DIST_PATH)/inc/c/"
     67        cp -L "$(USPACE_PATH)/lib/c/crt0.o" "$(DIST_PATH)/lib/"
     68        cp -L "$(USPACE_PATH)/lib/c/crt1.o" "$(DIST_PATH)/lib/"
     69        cp -L "$(LIBGCC_PATH)" "$(DIST_PATH)/lib/"
    6770endif
    6871
Note: See TracChangeset for help on using the changeset viewer.