Austin Schuh | 4759ffc | 2015-10-07 20:39:56 -0700 | [diff] [blame] | 1 | new_local_repository( |
| 2 | name = 'usr_repo', |
| 3 | path = '/usr', |
| 4 | build_file = 'debian/BUILD.usr', |
| 5 | ) |
| 6 | |
| 7 | # TODO(brian): Make these point to something which isn't hard-coded to come off |
| 8 | # the host system... |
| 9 | bind( |
| 10 | name = 'librt', |
| 11 | actual = '@usr_repo//:librt', |
| 12 | ) |
| 13 | |
| 14 | bind( |
| 15 | name = 'libdl', |
| 16 | actual = '@usr_repo//:libdl', |
| 17 | ) |
| 18 | |
| 19 | bind( |
| 20 | name = 'libm', |
| 21 | actual = '@usr_repo//:libm', |
| 22 | ) |
| 23 | |
| 24 | bind( |
| 25 | name = 'libpthread', |
| 26 | actual = '@usr_repo//:libpthread', |
| 27 | ) |
Austin Schuh | 55139fe | 2015-10-14 23:55:24 -0700 | [diff] [blame^] | 28 | |
| 29 | new_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 | ) |