909f0482e4
Rather than using a manually maintained list of internal symbols to drive name mangling, add a compilation phase to automatically extract the list of internal symbols. This resolves #677.
6 lines
95 B
Bash
Executable File
6 lines
95 B
Bash
Executable File
#!/bin/sh
|
|
|
|
for symbol in `cat "$@"` ; do
|
|
echo "#define ${symbol} JEMALLOC_N(${symbol})"
|
|
done
|