~sheosi/helenos/lua

« back to all changes in this revision

Viewing changes to uspace/lib/posix/tools/create-redefines.sh

  • Committer: Vojtech Horky
  • Date: 2013-10-18 11:00:23 UTC
  • mfrom: (1741.1.39 gcc-port)
  • Revision ID: vojtechhorky@users.sourceforge.net-20131018110023-2rkcv2z0rg26ldjf
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)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
 
3
 
set -e
4
 
 
5
 
while read symbolname; do
6
 
        echo "--redefine-sym=$1$symbolname=$2$symbolname"
7
 
done