diff --git a/renamesyms.sh b/renamesyms.sh
index 0b534cf579b14fa79b86d9b8d8580295795cb6b7..a6036064ed63c19a61a235eacc5212db947658b0 100755
--- a/renamesyms.sh
+++ b/renamesyms.sh
@@ -8,11 +8,16 @@ if [ -z "$target" ] || [ -z "$deps_dir" ]; then
 fi
 
 symbols_file=`mktemp`
+special_syms="__rg_alloc __rg_dealloc __rg_realloc __rg_alloc_zeroed"
 
 for dep in `find $deps_dir -type f -name "*.rlib"`; do
     nm --format=posix -g "$dep" 2>/dev/null | sed 's/.*:.*//g' | awk '{if ($2 == "T") print $1}' | sed 's/^\(.*\)$/\1 __relibc_\1/g' >> $symbols_file
 done
 
+for special_sym in $special_syms; do
+    echo "$special_sym __relibc_$special_sym" >> $symbols_file
+done
+
 sorted_file=`mktemp`
 sort -u "$symbols_file" > "$sorted_file"
 rm -f "$symbols_file"