mirror of
https://github.com/lifting-bits/remill
synced 2026-06-21 13:56:07 +00:00
4c8f433750
I think the llvm+clang download has rtti off but this project requires it to be on. We might need to build llvm and clang each time. :(
15 lines
369 B
Bash
Executable File
15 lines
369 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright 2015 Peter Goodman (peter@trailofbits.com), all rights reserved.
|
|
|
|
SCRIPTS_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
|
|
|
|
if [[ "$OSTYPE" == "linux-gnu" ]]; then
|
|
exec $SCRIPTS_DIR/bootstrap_linux.sh
|
|
|
|
elif [[ "$OSTYPE" == "darwin"* ]]; then
|
|
exec $SCRIPTS_DIR/bootstrap_osx.sh
|
|
|
|
else
|
|
echo "Unsupported platform: $OSTYPE"
|
|
fi
|