mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
12 lines
324 B
Bash
Executable File
12 lines
324 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# this file should generate symlinks (POSIX, TODO) or LD scripts (POSIX or windows) to enable standard version linking
|
|
|
|
for lib in lib*.so.*; do
|
|
libout="${lib%.*}"
|
|
rm -rf $libout
|
|
echo "OUTPUT_FORMAT(elf32-littlearm)" > $libout
|
|
echo "GROUP ( $lib )" >> $libout
|
|
echo "Generated LD link $libout -> $lib"
|
|
done
|