Guest User

Untitled

a guest
Jun 18th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. tar zxvf readline-5.2.tar.gz
  2. cd readline-5.2
  3. export MACOSX_DEPLOYMENT_TARGET=10.5
  4. export CFLAGS="-arch x86_64 -g -Os -pipe -no-cpp-precomp"
  5. export CCFLAGS="-arch x86_64 -g -Os -pipe"
  6. export CXXFLAGS="-arch x86_64 -g -Os -pipe"
  7. export LDFLAGS="-arch x86_64 -bind_at_load"
  8. ./configure --prefix=/usr/local
  9. cd shlib
  10. sed -e 's/-dynamic/-dynamiclib/' Makefile > Makefile.good
  11. mv Makefile.good Makefile
  12. cd ..
  13. make && sudo make install
Add Comment
Please, Sign In to add comment