mirror of
https://github.com/darlinghq/darling.git
synced 2024-11-30 07:40:41 +00:00
7 lines
281 B
Bash
Executable File
7 lines
281 B
Bash
Executable File
#!/bin/sh
|
|
|
|
awk '/#define DARWIN_([A-Z]+) ([0-9]+)/ { printf("darwin_to_linux[%s] = %s;\n", $2, substr($2, 8)); }' < "$1" > "darwin_to_linux.map"
|
|
|
|
awk '/#define DARWIN_([A-Z]+) ([0-9]+)/ { printf("linux_to_darwin[%s] = %s;\n", substr($2, 8), $2); }' < "$1" > "linux_to_darwin.map"
|
|
|