File tree 2 files changed +11
-0
lines changed
2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,17 @@ xtensa-lx106-elf-ar -d libmain.a mem_manager.o
10
10
xtensa-lx106-elf-ar -d libmain.a time.o
11
11
```
12
12
13
+ Rename ` hostname ` and ` default_hostname ` symbols:
14
+
15
+ ``` bash
16
+ xtensa-lx106-elf-ar x libmain.a eagle_lwip_if.o user_interface.o
17
+ xtensa-lx106-elf-objcopy --redefine-sym hostname=wifi_station_hostname user_interface.o
18
+ xtensa-lx106-elf-objcopy --redefine-sym hostname=wifi_station_hostname eagle_lwip_if.o
19
+ xtensa-lx106-elf-objcopy --redefine-sym default_hostname=wifi_station_default_hostname user_interface.o
20
+ xtensa-lx106-elf-objcopy --redefine-sym default_hostname=wifi_station_default_hostname eagle_lwip_if.o
21
+ xtensa-lx106-elf-ar r libmain.a eagle_lwip_if.o user_interface.o
22
+ ```
23
+
13
24
## Updating libstdc++
14
25
15
26
After building gcc using crosstool-NG, get compiled libstdc++ and remove some objects:
You can’t perform that action at this time.
0 commit comments