Used external roborio compiler instead of local compiler.
Change-Id: Ifec0d68b0b51a822c906bc4f52320004ee2f5d84
diff --git a/tools/cpp/arm-frc-linux-gnueabi/BUILD b/tools/cpp/arm-frc-linux-gnueabi/BUILD
new file mode 100644
index 0000000..4548dbe
--- /dev/null
+++ b/tools/cpp/arm-frc-linux-gnueabi/BUILD
@@ -0,0 +1,70 @@
+package(default_visibility = ['//tools/cpp:__pkg__'])
+
+filegroup(
+ name = 'gcc',
+ srcs = [
+ '@arm-frc-linux-gnueabi-repo//:gcc',
+ 'arm-frc-linux-gnueabi-gcc',
+ ],
+)
+
+filegroup(
+ name = 'ar',
+ srcs = [
+ '@arm-frc-linux-gnueabi-repo//:ar',
+ 'arm-frc-linux-gnueabi-ar',
+ ],
+)
+
+filegroup(
+ name = 'ld',
+ srcs = [
+ '@arm-frc-linux-gnueabi-repo//:ld',
+ 'arm-frc-linux-gnueabi-ld',
+ ],
+)
+
+filegroup(
+ name = 'nm',
+ srcs = [
+ '@arm-frc-linux-gnueabi-repo//:nm',
+ 'arm-frc-linux-gnueabi-nm',
+ ],
+)
+
+filegroup(
+ name = 'objcopy',
+ srcs = [
+ '@arm-frc-linux-gnueabi-repo//:objcopy',
+ 'arm-frc-linux-gnueabi-objcopy',
+ ],
+)
+
+filegroup(
+ name = 'objdump',
+ srcs = [
+ '@arm-frc-linux-gnueabi-repo//:objdump',
+ 'arm-frc-linux-gnueabi-objdump',
+ ],
+)
+
+filegroup(
+ name = 'strip',
+ srcs = [
+ '@arm-frc-linux-gnueabi-repo//:strip',
+ 'arm-frc-linux-gnueabi-strip',
+ ],
+)
+
+filegroup(
+ name = 'tool-wrappers',
+ srcs = [
+ ':gcc',
+ ':ar',
+ ':ld',
+ ':nm',
+ ':objcopy',
+ ':objdump',
+ ':strip',
+ ],
+)