mirror of https://github.com/ARMmbed/mbed-os.git
Toolchain should create artifact directory for link step
parent
1ae994fb62
commit
65fae781a1
|
@ -686,6 +686,11 @@ class mbedToolchain:
|
|||
name = name[0:8]
|
||||
ext = ext[0:3]
|
||||
|
||||
# Create destination directory
|
||||
head, tail = split(name)
|
||||
new_path = join(tmp_path, head)
|
||||
mkdir(new_path)
|
||||
|
||||
filename = name+'.'+ext
|
||||
elf = join(tmp_path, name + '.elf')
|
||||
bin = join(tmp_path, filename)
|
||||
|
|
Loading…
Reference in New Issue