blob: a37e1d4312c791e6f264d7b6fadc6b2aa9e467f5 [file] [log] [blame]
Austin Schuh4759ffc2015-10-07 20:39:56 -07001new_local_repository(
2 name = 'usr_repo',
3 path = '/usr',
Brian Silverman8d548902015-11-04 23:50:11 -05004 build_file = 'debian/usr.BUILD',
Austin Schuh4759ffc2015-10-07 20:39:56 -07005)
6
7# TODO(brian): Make these point to something which isn't hard-coded to come off
8# the host system...
9bind(
10 name = 'librt',
11 actual = '@usr_repo//:librt',
12)
13
14bind(
15 name = 'libdl',
16 actual = '@usr_repo//:libdl',
17)
18
19bind(
20 name = 'libm',
21 actual = '@usr_repo//:libm',
22)
23
24bind(
25 name = 'libpthread',
26 actual = '@usr_repo//:libpthread',
27)
Austin Schuh55139fe2015-10-14 23:55:24 -070028
29new_http_archive(
30 name = 'arm-frc-linux-gnueabi-repo',
31 build_file = 'tools/cpp/arm-frc-linux-gnueabi/arm-frc-linux-gnueabi.BUILD',
32 sha256 = '9d92b513b627c4aaa93d4d8049b4c6b96a532b64df11b27fde4dead58347a9f6',
33 url = 'http://frc971.org/Build-Dependencies/arm-frc-linux-gnueabi_4.9.3.tar.gz',
34)