Changeset a5c468e in mainline for tools/xcw/bin/helenos-cc


Ignore:
Timestamp:
2018-11-11T20:21:08Z (5 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
4640416
Parents:
5c03bd30
Message:

Build XCW demo as part of default target. Need to get real CFLAGS to fix some ARM targets, use export target. Make export as part of default target into uspace/export. Update gitignore.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/xcw/bin/helenos-cc

    r5c03bd30 ra5c468e  
    11#!/bin/bash
    22#
    3 # Copyright (c) 2015 Jiri Svoboda
     3# Copyright (c) 2018 Jiri Svoboda
    44# All rights reserved.
    55#
     
    3636UARCH="$("$XCW"/helenos-bld-config --uarch)"
    3737CC="$("$XCW"/helenos-bld-config --cc)"
     38CFLAGS="$("$XCW"/helenos-bld-config --cflags)"
    3839ENDIAN="$("$XCW"/helenos-bld-config --endian)"
    3940
     
    4142"$CC" \
    4243    -O3 -fexec-charset=UTF-8 -fwide-exec-charset=UTF-32LE -finput-charset=UTF-8 \
    43     -nostdlib \
     44    $CFLAGS \
    4445    -Wall -Wextra -Wno-clobbered -Wno-unused-parameter -Wmissing-prototypes \
    4546    -std=gnu99 -Werror-implicit-function-declaration -Wwrite-strings -ggdb \
Note: See TracChangeset for help on using the changeset viewer.