Changeset 009c485 in mainline for tools


Ignore:
Timestamp:
2018-05-01T19:02:23Z (7 years ago)
Author:
Jiří Zárevúcky <jiri.zarevucky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
742fc98e
Parents:
5261062
Message:

Always use CC for linking.

Location:
tools/xcw
Files:
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • tools/xcw/bin/helenos-bld-config

    r5261062 r009c485  
    4747case ".$1" in
    4848(.--cc) extract_field "CC" "$MAKEFILE_COMMON";;
    49 (.--ld) extract_field "LD" "$MAKEFILE_COMMON";;
    5049(.--uarch) extract_field "UARCH" "$MAKEFILE_CONFIG";;
    5150(.--endian)
  • tools/xcw/demo/Makefile

    r5261062 r009c485  
    4343
    4444CC = helenos-cc
    45 LD = helenos-ld
    4645CFLAGS = -std=gnu99 -Wall `helenos-pkg-config --cflags libgui libdraw libmath`
    4746LIBS = `helenos-pkg-config --libs libgui libdraw libmath`
     
    5655
    5756$(output): $(objects)
    58         $(LD) -o $@ $^ $(LIBS)
     57        $(CC) -o $@ $^ $(LIBS)
    5958
    6059%.o: %.c
Note: See TracChangeset for help on using the changeset viewer.