diff options
author | Ian Lance Taylor <iant@google.com> | 2006-11-03 18:26:11 +0000 |
---|---|---|
committer | Ian Lance Taylor <iant@google.com> | 2006-11-03 18:26:11 +0000 |
commit | ead1e4244a55707685d105c662a9a1faf5d122fe (patch) | |
tree | 3dd8ba9d010b4241ea750f6bdab49c6f3738036a /gold/target-select.cc | |
parent | 58ea3d6a2f4d205b86b1baeaee5f6865393a6dd6 (diff) | |
download | gdb-ead1e4244a55707685d105c662a9a1faf5d122fe.zip gdb-ead1e4244a55707685d105c662a9a1faf5d122fe.tar.gz gdb-ead1e4244a55707685d105c662a9a1faf5d122fe.tar.bz2 |
Can now do a full static link of hello, world in C or C++
Diffstat (limited to 'gold/target-select.cc')
-rw-r--r-- | gold/target-select.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gold/target-select.cc b/gold/target-select.cc index 28b7527..d15d0e3 100644 --- a/gold/target-select.cc +++ b/gold/target-select.cc @@ -34,7 +34,7 @@ extern Target* select_target(int machine, int size, bool big_endian, int osabi, int abiversion) { - for (const Target_selector* p = target_selectors; p != NULL; p = p->next()) + for (Target_selector* p = target_selectors; p != NULL; p = p->next()) { int pmach = p->machine(); if ((pmach == machine || pmach == elfcpp::EM_NONE) |