File tree Expand file tree Collapse file tree 2 files changed +34
-0
lines changed
packages/windows/picotool Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,9 @@ export LDFLAGS="-static -static-libgcc -static-libstdc++"
1111
1212git -C " $PICO_SDK_PATH " submodule update --init --depth=1 lib/mbedtls
1313
14+ # Apply https://github.com/raspberrypi/pico-sdk/commit/66540fe88e86a9f324422b7451a3b5dff4c0449f
15+ git -C " $PICO_SDK_PATH " apply " $PWD /../packages/windows/picotool/pioasm-cstdint.diff"
16+
1417echo " Version is $sdkVersion "
1518if [ ${sdkVersion: 0: 1} -ge 2 ]; then
1619 echo " Version 2+"
Original file line number Diff line number Diff line change 1+ diff --git a/tools/pioasm/output_format.h b/tools/pioasm/output_format.h
2+ index 405a5ae75..d42ea73b4 100644
3+ --- a/tools/pioasm/output_format.h
4+ +++ b/tools/pioasm/output_format.h
5+ @@ -7,6 +7,7 @@
6+ #ifndef _OUTPUT_FORMAT_H
7+ #define _OUTPUT_FORMAT_H
8+
9+ + #include <cstdint>
10+ #include <vector>
11+ #include <map>
12+ #include <string>
13+ @@ -120,4 +121,4 @@ struct output_format {
14+ output_format(std::string name) : name(std::move(name)) {}
15+ };
16+
17+ - #endif
18+ \ No newline at end of file
19+ + #endif
20+ diff --git a/tools/pioasm/pio_types.h b/tools/pioasm/pio_types.h
21+ index 9f9fb0e3e..755eb75a0 100644
22+ --- a/tools/pioasm/pio_types.h
23+ +++ b/tools/pioasm/pio_types.h
24+ @@ -7,6 +7,7 @@
25+ #ifndef _PIO_TYPES_H
26+ #define _PIO_TYPES_H
27+
28+ + #include <cstdint>
29+ #include <string>
30+ #include <map>
31+ #include <set>
You can’t perform that action at this time.
0 commit comments