about summary refs log tree commit diff
path: root/pkgs/build-support/cc-wrapper
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2016-02-05 11:59:18 +0100
committerVladimír Čunát <vcunat@gmail.com>2016-02-05 14:05:14 +0100
commit96cbdc70f239a25ea22d49f205c6168b526079df (patch)
tree727d73956f1bf2ad203c3982f9d23ef3ececed12 /pkgs/build-support/cc-wrapper
parent89036ef76ab09af6ba324c896f0db00ae1ebaab0 (diff)
downloadnixlib-96cbdc70f239a25ea22d49f205c6168b526079df.tar
nixlib-96cbdc70f239a25ea22d49f205c6168b526079df.tar.gz
nixlib-96cbdc70f239a25ea22d49f205c6168b526079df.tar.bz2
nixlib-96cbdc70f239a25ea22d49f205c6168b526079df.tar.lz
nixlib-96cbdc70f239a25ea22d49f205c6168b526079df.tar.xz
nixlib-96cbdc70f239a25ea22d49f205c6168b526079df.tar.zst
nixlib-96cbdc70f239a25ea22d49f205c6168b526079df.zip
cc-wrapper: fix #10574: old gcc -> cc fallout
The part with gcc-wrapper-old changes is rather unimportant,
as it's almost unused but I still tested that the sole user `gnat` builds.
Diffstat (limited to 'pkgs/build-support/cc-wrapper')
-rw-r--r--pkgs/build-support/cc-wrapper/add-flags6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/build-support/cc-wrapper/add-flags b/pkgs/build-support/cc-wrapper/add-flags
index d48361539047..5634c82aa285 100644
--- a/pkgs/build-support/cc-wrapper/add-flags
+++ b/pkgs/build-support/cc-wrapper/add-flags
@@ -1,11 +1,11 @@
-# `-B@out@/bin' forces gcc to use ld-wrapper.sh when calling ld.
+# `-B@out@/bin' forces cc to use ld-wrapper.sh when calling ld.
 export NIX_CFLAGS_COMPILE="-B@out@/bin/ $NIX_CFLAGS_COMPILE"
 
 if [ -e @out@/nix-support/libc-cflags ]; then
     export NIX_CFLAGS_COMPILE="$(cat @out@/nix-support/libc-cflags) $NIX_CFLAGS_COMPILE"
 fi
 
-if [ -e @out@/nix-support/gcc-cflags ]; then
+if [ -e @out@/nix-support/cc-cflags ]; then
     export NIX_CFLAGS_COMPILE="$(cat @out@/nix-support/cc-cflags) $NIX_CFLAGS_COMPILE"
 fi
 
@@ -17,7 +17,7 @@ if [ -e @out@/nix-support/libc-ldflags ]; then
     export NIX_LDFLAGS+=" $(cat @out@/nix-support/libc-ldflags)"
 fi
 
-if [ -e @out@/nix-support/gcc-ldflags ]; then
+if [ -e @out@/nix-support/cc-ldflags ]; then
     export NIX_LDFLAGS+=" $(cat @out@/nix-support/cc-ldflags)"
 fi