-
-
Save kmtu/8af74d3786567d947456 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# fix the configure files | |
patch -p1 config.guess < fix-config-sx9.diff | |
# make the build directory | |
mkdir -p builder | |
cd builder | |
# configure | |
../configure --host=sx9-nec-superux CC=sxcc CCAS=sxas CCASFLAGS='-m -F' CXX=sxc++ MPICC=sxmpicc MPIF77=sxmpif77 F77=sxf90 F90=sxf90 FC=sxf90 AR=sxar LD=sxld RANLIB=echo --prefix=$HOME/local/sx CFLAGS='-Cvsafe -size_t64' --enable-mpi --enable-shared=yes | |
make && make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment