Use same libgcc as Make for arm

The current make system uses the arm libgcc.a, not the thumb version.

Change-Id: I38efb80b0d14bbe9c56beeb50f3817307f076d89
This commit is contained in:
Dan Willemsen 2015-07-08 18:11:14 -07:00
parent ffce3fcf33
commit eba363ed67

View file

@ -210,12 +210,27 @@ bootstrap_go_binary {
toolchain_library {
name: "libatomic",
arch: {
arm: {
instruction_set: "arm",
},
},
}
toolchain_library {
name: "libgcc",
arch: {
arm: {
instruction_set: "arm",
},
},
}
toolchain_library {
name: "libgcov",
arch: {
arm: {
instruction_set: "arm",
},
},
}