Skip to content

Instantly share code, notes, and snippets.

@cyphunk
Created November 16, 2011 15:12
Show Gist options
  • Save cyphunk/1370293 to your computer and use it in GitHub Desktop.
Save cyphunk/1370293 to your computer and use it in GitHub Desktop.
Simtrace installation on OSX
sudo port install libusb
git clone git://git.osmocom.org/libosmocore.git
cd libosmocore/
autoreconf -i
./configure
# If you get the error message:
# utils.c:183: error: only weak aliases are supported in this configuration
# Change src/utils.c:183 to:
# __attribute__((weak, alias("osmo_hexdump_nospc")))
# Might not be a solution at all but the make will complete.
make
sudo make install
cd ..
git clone git://git.osmocom.org/simtrace.git
cd simtrace/host/
make
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment