Changeset 0c96e6cb in mainline for uspace/Makefile.common


Ignore:
Timestamp:
2013-10-18T11:00:23Z (11 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b5851913
Parents:
39bcc99 (diff), 9f9450b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge GCC port updates

libposix changes

  • unimplemented methods do not abort, they warn instead
  • add pthread.h, no implementation yet
  • speed-up symbol redefinition (objcopy can work with static libraries as well)
  • add some functions already implemented in libc to libposix

toolchain changes

  • experimental support for HelenOS-specific toolchain
    • toolchain.sh —helenos-target
    • adds *-helenos*- target, e.g. we can have amd64-helenos-gcc
    • added as another choice to HelenOS.config, updated other scripts accordingly
  • added non-root compilation
    • install into PKG/ to be later copied to real root (package-like installation)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/Makefile.common

    r39bcc99 r0c96e6cb  
    248248endif
    249249
     250ifeq ($(COMPILER),gcc_helenos)
     251        CFLAGS += $(GCC_CFLAGS) $(EXTRA_CFLAGS)
     252        DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS)
     253endif
     254
    250255ifeq ($(COMPILER),gcc_native)
    251256        CFLAGS += $(GCC_CFLAGS) $(EXTRA_CFLAGS)
Note: See TracChangeset for help on using the changeset viewer.