Changeset 5081276 in mainline
- Timestamp:
- 2011-09-07T00:12:22Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 888207c9
- Parents:
- c05642d (diff), 8afa52c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- uspace/app/binutils
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/binutils/Makefile
rc05642d r5081276 36 36 # Information for obtaining specific binutils redistributable package. 37 37 # Might be subject to change in the future. 38 REDIST_VERSION = 2.21 38 REDIST_VERSION = 2.21.1 39 39 REDIST_NAME = binutils-$(REDIST_VERSION) 40 40 REDIST_FILENAME = $(REDIST_NAME).tar.bz2 41 41 REDIST_SOURCE = ftp://ftp.gnu.org/gnu/binutils/ 42 REDIST_MIRROR = http://www.helenos.org/binutils/ 42 43 43 44 # Directory for the binutils source tree. … … 167 168 $(REDIST_FILENAME): 168 169 wget -c $(REDIST_SOURCE)$(REDIST_FILENAME) 170 if [ ! -e $(REDIST_FILENAME) ]; then \ 171 wget -c $(REDIST_MIRROR)$(REDIST_FILENAME); \ 172 fi 169 173 170 174 # Extract binutils source tree. -
uspace/app/binutils/intrusive.sh
rc05642d r5081276 57 57 # Patch 2 58 58 # Enabled cross compilation flag brings along some anomalies which 59 # have to reverted.59 # have to be reverted. 60 60 # 61 61 # Patch 3 -
uspace/app/binutils/toolchain.sh
rc05642d r5081276 95 95 echo ' sed '\'s/ [ ]*/ /g\''`"' 96 96 # Add flags: 97 # -Wno-shadow 98 # Silents the warning caused by 99 # harmless bug in ld/ldlang.h and ld/ldlex.c. 100 # echo ' GCC_ARGS="$GCC_ARGS -Wno-shadow"' 97 # -example 98 # Flag description. 99 # echo ' GCC_ARGS="$GCC_ARGS -example"' 101 100 echo ' echo' \'"$2"\' '"$GCC_ARGS"' \'"$CFLAGS"\' 102 101 echo " $2" '$GCC_ARGS' "$CFLAGS"
Note:
See TracChangeset
for help on using the changeset viewer.