Skip to content

Commit 0a6bc70

Browse files
committed
Linux example build gives tolls scripts exec rights
1 parent 59a0947 commit 0a6bc70

File tree

5 files changed

+2
-1
lines changed

5 files changed

+2
-1
lines changed

examples/avr/basic_usage/build/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ build: $(PRJ).bin
139139
cp -a $(PRJ).bin $(RELEASEDIR)
140140
@echo "ADDRESS SIZE FUNCTION FILE:LINE\n" > memory_program.txt
141141
@$(NM) $(PRJ).elf >> memory_program.txt
142-
@chmod +x ../tools/*
142+
@chmod +x $(BUILDDIR)/../tools/*
143143
@../tools/memusageram $(BUILDDIR)/memory_ram.txt >/dev/null 2>&1
144144
@rm -f $(BUILDDIR)/*.su
145145
@mkdir -p $(BUILDDIR)/obj

examples/linux/basic_usage/build/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ build: $(PRJ).bin
8989
cp -a $(PRJ).bin $(RELEASEDIR)
9090
@echo "ADDRESS SIZE FUNCTION FILE:LINE\n" > memory_program.txt
9191
@$(NM) $(PRJ).elf >> memory_program.txt
92+
@chmod +x $(BUILDDIR)/../tools/*
9293
@../tools/memusageram $(BUILDDIR)/memory_ram.txt >/dev/null 2>&1
9394
@rm -f $(BUILDDIR)/*.su
9495
@mkdir -p $(BUILDDIR)/obj

examples/linux/basic_usage/tools/binary_size

100644100755
File mode changed.

examples/linux/basic_usage/tools/cflow_stack_memory

100644100755
File mode changed.

examples/linux/basic_usage/tools/memusageram

100644100755
File mode changed.

0 commit comments

Comments
 (0)