Skip to content

Instantly share code, notes, and snippets.

@ernix
Created April 28, 2014 07:46
Show Gist options
  • Save ernix/11364596 to your computer and use it in GitHub Desktop.
Save ernix/11364596 to your computer and use it in GitHub Desktop.
Install 32bit perl on Mac OSX with plenv
plenv install 5.8.9 \
-Dcc=gcc \
-Dld=g++ \
-Dusethreads \
-Duseithreads \
-Duseshrplib \
-Accflags="-isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk" \
-Accflags="-mmacosx-version-min=10.6" \
-Accflags="-arch i386 -DUSE_SITECUSTOMIZE -Duselargefiles" \
-Aldflags="-Wl,-search_paths_first -arch i386" \
-Aldflags="-mmacosx-version-min=10.6" \
-Alddlflags="-Wl,-search_paths_first -arch i386" \
-Alddlflags="-mmacosx-version-min=10.6" \
--as 5.8.9-i386
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment