Skip to content
Snippets Groups Projects
Commit 063c34f1 authored by mark's avatar mark
Browse files

BUG: CC not being properly exported in some make scripts (fixes #12)

parent 09428646
Branches
Tags
1 merge request!3Last-minute fix for typos
...@@ -336,6 +336,16 @@ The minimum CMake requirements for building various components. ...@@ -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/
......
...@@ -91,7 +91,7 @@ USAGE ...@@ -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
......
...@@ -89,7 +89,7 @@ USAGE ...@@ -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 ...@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment