mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Add the option build with different compiler and linker flag extensions.
This commit is contained in:
parent
28b84f5ddc
commit
d4f51e6ed0
@ -394,6 +394,7 @@ case $SDKs in
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
MYCFLAGS="-mmacosx-version-min=${MACOSX_DEPLOYMENT_TARGET}"
|
MYCFLAGS="-mmacosx-version-min=${MACOSX_DEPLOYMENT_TARGET}"
|
||||||
|
MYLDFLAGS="-mmacosx-version-min=${MACOSX_DEPLOYMENT_TARGET}"
|
||||||
|
|
||||||
build_qt() {
|
build_qt() {
|
||||||
echo Build Qt library ${QtSourceDir}
|
echo Build Qt library ${QtSourceDir}
|
||||||
@ -456,7 +457,7 @@ if [ -d "${LibMagicSourceDir}" -a ! -f "${LibMagicInstallHdr}" ]; then
|
|||||||
|
|
||||||
for arch in ${ARCH_LIST} ; do
|
for arch in ${ARCH_LIST} ; do
|
||||||
CPPFLAGS="${SDKROOT:+-isysroot ${SDKROOT}} -arch ${arch} ${MYCFLAGS}"; export CPPFLAGS
|
CPPFLAGS="${SDKROOT:+-isysroot ${SDKROOT}} -arch ${arch} ${MYCFLAGS}"; export CPPFLAGS
|
||||||
LDFLAGS="${SDKROOT:+-isysroot ${SDKROOT}} -arch ${arch} ${MYCFLAGS}"; export LDFLAGS
|
LDFLAGS="${SDKROOT:+-isysroot ${SDKROOT}} -arch ${arch} ${MYLDFLAGS}"; export LDFLAGS
|
||||||
"${LibMagicSourceDir}/configure"\
|
"${LibMagicSourceDir}/configure"\
|
||||||
--prefix="${LibMagicInstallDir}"\
|
--prefix="${LibMagicInstallDir}"\
|
||||||
${LibMagicConfigureOptions}
|
${LibMagicConfigureOptions}
|
||||||
@ -518,7 +519,7 @@ if [ -d "${HunSpellSourceDir}" -a ! -f "${HunSpellInstallHdr}" ]; then
|
|||||||
for arch in ${ARCH_LIST} ; do
|
for arch in ${ARCH_LIST} ; do
|
||||||
make distclean
|
make distclean
|
||||||
CPPFLAGS="${SDKROOT:+-isysroot ${SDKROOT}} -arch ${arch} ${MYCFLAGS}"; export CPPFLAGS
|
CPPFLAGS="${SDKROOT:+-isysroot ${SDKROOT}} -arch ${arch} ${MYCFLAGS}"; export CPPFLAGS
|
||||||
LDFLAGS="${SDKROOT:+-isysroot ${SDKROOT}} -arch ${arch} ${MYCFLAGS}"; export LDFLAGS
|
LDFLAGS="${SDKROOT:+-isysroot ${SDKROOT}} -arch ${arch} ${MYLDFLAGS}"; export LDFLAGS
|
||||||
"${HunSpellSourceDir}/configure"\
|
"${HunSpellSourceDir}/configure"\
|
||||||
--prefix="${HunSpellInstallDir}"\
|
--prefix="${HunSpellInstallDir}"\
|
||||||
${HunspellConfigureOptions}
|
${HunspellConfigureOptions}
|
||||||
@ -581,7 +582,7 @@ if [ -d "${ASpellSourceDir}" -a ! -f "${ASpellInstallHdr}" -a "yes" = "${aspell_
|
|||||||
for arch in ${ARCH_LIST} ; do
|
for arch in ${ARCH_LIST} ; do
|
||||||
make distclean
|
make distclean
|
||||||
CPPFLAGS="${SDKROOT:+-isysroot ${SDKROOT}} -arch ${arch} ${MYCFLAGS}"; export CPPFLAGS
|
CPPFLAGS="${SDKROOT:+-isysroot ${SDKROOT}} -arch ${arch} ${MYCFLAGS}"; export CPPFLAGS
|
||||||
LDFLAGS="${SDKROOT:+-isysroot ${SDKROOT}} -arch ${arch} ${MYCFLAGS}"; export LDFLAGS
|
LDFLAGS="${SDKROOT:+-isysroot ${SDKROOT}} -arch ${arch} ${MYLDFLAGS}"; export LDFLAGS
|
||||||
CXXFLAGS=-g "${ASpellSourceDir}/configure"\
|
CXXFLAGS=-g "${ASpellSourceDir}/configure"\
|
||||||
--prefix="${ASpellInstallDir}"\
|
--prefix="${ASpellInstallDir}"\
|
||||||
${AspellConfigureOptions}
|
${AspellConfigureOptions}
|
||||||
@ -677,7 +678,7 @@ build_lyx() {
|
|||||||
mkdir -p "${LyxBuildDir}" && cd "${LyxBuildDir}"
|
mkdir -p "${LyxBuildDir}" && cd "${LyxBuildDir}"
|
||||||
|
|
||||||
CPPFLAGS="${SDKROOT:+-isysroot ${SDKROOT}} -arch ${arch} ${MYCFLAGS}"
|
CPPFLAGS="${SDKROOT:+-isysroot ${SDKROOT}} -arch ${arch} ${MYCFLAGS}"
|
||||||
LDFLAGS="${SDKROOT:+-isysroot ${SDKROOT}} -arch ${arch} ${MYCFLAGS}"
|
LDFLAGS="${SDKROOT:+-isysroot ${SDKROOT}} -arch ${arch} ${MYLDFLAGS}"
|
||||||
|
|
||||||
if [ "$configure_qt_frameworks" = "yes" ]; then
|
if [ "$configure_qt_frameworks" = "yes" ]; then
|
||||||
export QT_CORE_CFLAGS="-FQtCore"
|
export QT_CORE_CFLAGS="-FQtCore"
|
||||||
|
Loading…
Reference in New Issue
Block a user