mirror of
https://develop.openfoam.com/Development/ThirdParty-common.git
synced 2025-12-08 06:57:50 +00:00
BUG: CC not being properly exported in some make scripts (fixes #12)
This commit is contained in:
10
BUILD.md
10
BUILD.md
@ -336,6 +336,16 @@ The minimum CMake requirements for building various components.
|
|||||||
3.5 ParaView-5.1.0
|
3.5 ParaView-5.1.0
|
||||||
|
|
||||||
|
|
||||||
|
### GCC Minimum Requirements <a name="min-gcc"></a>
|
||||||
|
|
||||||
|
The minimum gcc/g++ requirements for building various components.
|
||||||
|
|
||||||
|
4.7 llvm-3.7.0
|
||||||
|
4.7 llvm-3.6.2
|
||||||
|
4.7 llvm-3.5.2
|
||||||
|
4.4 llvm-3.4.2
|
||||||
|
|
||||||
|
|
||||||
<!-- gcc-related -->
|
<!-- gcc-related -->
|
||||||
[page gcc]: http://gcc.gnu.org/releases.html
|
[page gcc]: http://gcc.gnu.org/releases.html
|
||||||
[page gmp]: http://gmplib.org/
|
[page gmp]: http://gmplib.org/
|
||||||
|
|||||||
2
makeCGAL
2
makeCGAL
@ -91,7 +91,7 @@ USAGE
|
|||||||
}
|
}
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# Ensure CMake gets the correct C/C++ compiler
|
# Ensure CMake gets the correct C/C++ compiler
|
||||||
[ -n "$WM_CC" ] && export CC="$WM_CCX"
|
[ -n "$WM_CC" ] && export CC="$WM_CC"
|
||||||
[ -n "$WM_CXX" ] && export CXX="$WM_CXX"
|
[ -n "$WM_CXX" ] && export CXX="$WM_CXX"
|
||||||
|
|
||||||
unset optHeadersOnly
|
unset optHeadersOnly
|
||||||
|
|||||||
2
makeLLVM
2
makeLLVM
@ -89,7 +89,7 @@ USAGE
|
|||||||
}
|
}
|
||||||
#-----------------------------------------------------------------------------
|
#-----------------------------------------------------------------------------
|
||||||
# Ensure CMake gets the correct C/C++ compiler
|
# Ensure CMake gets the correct C/C++ compiler
|
||||||
[ -n "$WM_CC" ] && export CC="$WM_CCX"
|
[ -n "$WM_CC" ] && export CC="$WM_CC"
|
||||||
[ -n "$WM_CXX" ] && export CXX="$WM_CXX"
|
[ -n "$WM_CXX" ] && export CXX="$WM_CXX"
|
||||||
|
|
||||||
# Parse options
|
# Parse options
|
||||||
|
|||||||
@ -77,7 +77,7 @@ USAGE
|
|||||||
}
|
}
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# Ensure CMake gets the correct C/C++ compiler
|
# Ensure CMake gets the correct C/C++ compiler
|
||||||
[ -n "$WM_CC" ] && export CC="$WM_CCX"
|
[ -n "$WM_CC" ] && export CC="$WM_CC"
|
||||||
[ -n "$WM_CXX" ] && export CXX="$WM_CXX"
|
[ -n "$WM_CXX" ] && export CXX="$WM_CXX"
|
||||||
|
|
||||||
# Parse options
|
# Parse options
|
||||||
|
|||||||
Reference in New Issue
Block a user