Dash:
[t2.git] / package / base / dietlibc / pkg_gcc_post.conf
blob4912402208c3d74d71c03f9540b606dc35e9b87e
1 # --- T2-COPYRIGHT-NOTE-BEGIN ---
2 # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
3
4 # T2 SDE: package/.../dietlibc/pkg_gcc_post.conf
5 # Copyright (C) 2004 - 2006 The T2 SDE Project
6
7 # More information can be found in the files COPYING and README.
8
9 # This program is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; version 2 of the License. A copy of the
12 # GNU General Public License can be found in the file COPYING.
13 # --- T2-COPYRIGHT-NOTE-END ---
15 dietlibc_cc()
17         rm -f $root/$prefix/bin/cc
18         cat <<- EOT > $root/$prefix/bin/cc
19                 #!/bin/sh
20                 exec $dietbin gcc "\$@"
21         EOT
22         chmod +x $root/$prefix/bin/cc
25 # FIXME: c++ and java are not working with dietlibc, we do not yet need objc
26 if [ "$pkg_dietlibc_useit" = 1 ]; then
27         var_remove_regex confopt " " "--enable-languages=.*"
28         var_append confopt " " "--enable-languages=c --disable-libgcj --disable-libmudflap"
31 if ! atstage toolchain && [ "$SDECFG_LIBC" = "dietlibc" ]; then
32         hook_add postmake 9 "dietlibc_cc"