1# Copyright (C) 2008, 2010, 2018, 2019  Anthony Green
2
3# Make sure we look in the right place for the board description files.
4if ![info exists boards_dir] {
5    set boards_dir {}
6}
7
8lappend boards_dir $::env(TRAVIS_BUILD_DIR)/.travis
9
10verbose "Global Config File: target_triplet is $target_triplet" 2
11global target_list
12
13case "$target_triplet" in {
14    { "bfin-elf" } {
15	set target_list "bfin-sim"
16    }
17    { "m32r-elf" } {
18	set target_list "m32r-sim"
19    }
20    { "moxie-elf" } {
21	set target_list "moxie-sim"
22    }
23    { "or1k-elf" } {
24	set target_list "or1k-sim"
25    }
26}
27
28