'pbuild::build' has been renamed to 'pbuild::compile' in version 0.99.15
This commit is contained in:
@@ -30,7 +30,7 @@ EOF
|
||||
sed -i.bak "s/MACOSX_DEPLOYMENT_TARGET=.*/MACOSX_DEPLOYMENT_TARGET=$MACOSX_DEPLOYMENT_TARGET/" "${SRC_DIR}/Makefile.system"
|
||||
}
|
||||
|
||||
pbuild::build() {
|
||||
pbuild::compile() {
|
||||
make -j3
|
||||
}
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@ COMMON_PROF = -pg
|
||||
EOF
|
||||
}
|
||||
|
||||
pbuild::build() {
|
||||
pbuild::compile() {
|
||||
cd "${SRC_DIR}"
|
||||
make
|
||||
}
|
||||
|
||||
@@ -37,7 +37,7 @@ pbuild::configure() {
|
||||
}
|
||||
fi
|
||||
|
||||
pbuild::build() {
|
||||
pbuild::compile() {
|
||||
if (( V_MAJOR < 5 )); then
|
||||
cd "${SRC_DIR}"
|
||||
mkdir -p "${PREFIX}/lib"
|
||||
|
||||
@@ -26,7 +26,7 @@ TBB =
|
||||
EOF
|
||||
}
|
||||
|
||||
pbuild::build() {
|
||||
pbuild::compile() {
|
||||
cd "${SRC_DIR}/UMFPACK"
|
||||
make TARGET=CORE2 BINARY=64 USE_THREAD=0 NO_SHARED=1
|
||||
}
|
||||
|
||||
@@ -13,7 +13,7 @@ pbuild::configure() {
|
||||
|| exit 1
|
||||
}
|
||||
|
||||
pbuild::build() {
|
||||
pbuild::compile() {
|
||||
cd "${SRC_DIR}"
|
||||
./b2 \
|
||||
--build-type=minimal \
|
||||
|
||||
@@ -58,7 +58,7 @@ pbuild::configure() {
|
||||
|| exit 1
|
||||
}
|
||||
|
||||
pbuild::build() {
|
||||
pbuild::compile() {
|
||||
make -j 4
|
||||
}
|
||||
|
||||
|
||||
@@ -34,7 +34,7 @@ pbuild::configure() {
|
||||
|| exit 1
|
||||
}
|
||||
|
||||
pbuild::build() {
|
||||
pbuild::compile() {
|
||||
make -C src
|
||||
make -C tools
|
||||
}
|
||||
|
||||
@@ -22,7 +22,7 @@ pbuild::configure() {
|
||||
|| exit 1
|
||||
}
|
||||
|
||||
pbuild::build() {
|
||||
pbuild::compile() {
|
||||
make check
|
||||
make
|
||||
make install
|
||||
|
||||
@@ -14,7 +14,7 @@ pbuild::configure() {
|
||||
|| exit 1
|
||||
}
|
||||
|
||||
pbuild::build() {
|
||||
pbuild::compile() {
|
||||
make -C src
|
||||
make -C tools
|
||||
}
|
||||
|
||||
@@ -36,7 +36,7 @@ CDEFS = -DAdd__
|
||||
EOF
|
||||
}
|
||||
|
||||
pbuild::build() {
|
||||
pbuild::compile() {
|
||||
cd "${SRC_DIR}"
|
||||
mkdir -p "${PREFIX}/lib"
|
||||
make
|
||||
|
||||
@@ -16,7 +16,7 @@ pbuild::configure() {
|
||||
./configure.sh "${target}" || exit 1
|
||||
}
|
||||
|
||||
pbuild::build() {
|
||||
pbuild::compile() {
|
||||
make
|
||||
}
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ pbuild::configure() {
|
||||
cp -v "${BUILDBLOCK_DIR}/files/Makefile.PSI" "${BUILD_DIR}/src/MAKE/MINE"
|
||||
}
|
||||
|
||||
pbuild::build() {
|
||||
pbuild::compile() {
|
||||
make -C src PSI
|
||||
}
|
||||
|
||||
|
||||
@@ -32,7 +32,7 @@ pbuild::configure() {
|
||||
fi
|
||||
}
|
||||
|
||||
pbuild::build() {
|
||||
pbuild::compile() {
|
||||
CC=$MPICC
|
||||
CXX=$MPICXX
|
||||
F77=$MPIF77
|
||||
|
||||
@@ -4,7 +4,7 @@ pbuild::configure() {
|
||||
:
|
||||
}
|
||||
|
||||
pbuild::build() {
|
||||
pbuild::compile() {
|
||||
:
|
||||
}
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@ pbuild::configure() {
|
||||
:
|
||||
}
|
||||
|
||||
pbuild::build() {
|
||||
pbuild::compile() {
|
||||
:
|
||||
}
|
||||
|
||||
|
||||
@@ -57,7 +57,7 @@ pbuild::configure() {
|
||||
cp -v "${BUILDBLOCK_DIR}/files/Makefile-${V_MAJOR}" "${SRC_DIR}/Makefile"
|
||||
}
|
||||
|
||||
pbuild::build() {
|
||||
pbuild::compile() {
|
||||
cd "${SRC_DIR}"
|
||||
which $CC
|
||||
make OTHER_CXXFLAGS="-std=c++11 -I$PWD/include" OTHER_LDFLAGS="-L/Applications/Xcode.app/Contents/Frameworks -lLTO"
|
||||
|
||||
@@ -4,7 +4,7 @@ pbuild::configure() {
|
||||
:
|
||||
}
|
||||
|
||||
pbuild::build() {
|
||||
pbuild::compile() {
|
||||
:
|
||||
}
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@ pbuild::configure() {
|
||||
:
|
||||
}
|
||||
|
||||
pbuild::build() {
|
||||
pbuild::compile() {
|
||||
cd "${SRC_DIR}"
|
||||
|
||||
make -j ${JOBS}
|
||||
|
||||
@@ -4,7 +4,7 @@ pbuild::configure() {
|
||||
:
|
||||
}
|
||||
|
||||
pbuild::build() {
|
||||
pbuild::compile() {
|
||||
cd "${SRC_DIR}"
|
||||
|
||||
make -j ${JOBS}
|
||||
|
||||
@@ -11,7 +11,7 @@ pbuild::configure() {
|
||||
--with-liblinear=included
|
||||
}
|
||||
|
||||
pbuild::build() {
|
||||
pbuild::compile() {
|
||||
cd "${SRC_DIR}"
|
||||
make -j "${JOBS}"
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ pbuild::configure() {
|
||||
:
|
||||
}
|
||||
|
||||
pbuild::build() {
|
||||
pbuild::compile() {
|
||||
cd "${SRC_DIR}"
|
||||
make
|
||||
}
|
||||
|
||||
@@ -19,7 +19,7 @@ pbuild::configure() {
|
||||
|| exit 1
|
||||
}
|
||||
|
||||
pbuild::build() {
|
||||
pbuild::compile() {
|
||||
cd "${SRC_DIR}"
|
||||
make
|
||||
|
||||
|
||||
Reference in New Issue
Block a user