You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
13 lines
297 B
Bash
Executable File
13 lines
297 B
Bash
Executable File
#!/bin/sh
|
|
# Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
FunctionName=$1
|
|
DylibFullPath=$2
|
|
|
|
if [ -f "$DylibFullPath" ]; then
|
|
nm -Cg "$DylibFullPath" | grep "\b$FunctionName\b" | cut -d' ' -f1 | atos --fullPath -o "$DylibFullPath"
|
|
else
|
|
echo "$DylibFullPath does not exist"
|
|
exit 1
|
|
fi
|