Install MPLABX 3.45 on Fedora 24 x64 SOLVED

So, you’re missing a few 32 bit libraries on your 64 bit Fedora install. Note, I DID NOT need to install 32-bit java.

# java -version
openjdk version "1.8.0_111"
OpenJDK Runtime Environment (build 1.8.0_111-b16)
OpenJDK 64-Bit Server VM (build 25.111-b16, mixed mode)

 

For simplicities sake, these are all run as root. Yes, I know what I’m doing on my system – but I don’t know what’s going on with yours. So if something breaks, it’s on you.

# ./MPLABX-v3.45-linux-installer.sh
64 Bit, check libraries
Check for 32 Bit libraries
These 32 bit libraries were not found and are needed for MPLAB X to run:
libc.so
libdl.so
libgcc_s.so
libm.so
libpthread.so
librt.so
libstdc++.so
libexpat.so
libX11.so
libXext.so


# dnf install glibc-2.23.1-11.fc24.i686
# dnf install expat-2.1.1-2.fc24.i686
# dnf install libXext-1.3.3-4.fc24.i686
# dnf install libstdc++-6.2.1-2.fc24.i686

# chmod 744 xc8-v1.38-full-install-linux-installer.run; ./xc8-v1.38-full-install-linux-installer.run
# chmod 744 harmony_v1_09_linux_installer.run; ./harmony_v1_09_linux_installer.run

 

Leave a Reply