View Issue Details

IDProjectCategoryView StatusLast Update
0002834ThirdPartyPatchpublic2018-02-08 14:42
Reporterhandrake0724 Assigned Tohenry  
PrioritynormalSeverityminorReproducibilityalways
Status closedResolutionduplicate 
Platformx86_64OSArchOS Version(please specify)
Summary0002834: intel compiler support of makeCGAL
DescriptionWhen WM_COMPILER set to Intel, makeCGAL makes error because
bjam's toolset option should be given one of gcc, intel, clang but got icc instead of intel.

So the following patch could fix this issue.

        case $WM_COMPILER in
            "Gcc*")
                TOOLSET=gcc
                ;;
            "Icc")
                TOOLSET=intel
                ;;
            "Clang")
                TOOLSET=clang
                ;;
        esac

        ./bootstrap.sh \
            --prefix=$BOOST_ARCH_PATH \
            --libdir=$boostLib \
            --with-libraries=thread \
            --with-libraries=system \
        && ./bjam toolset=$TOOLSET -j $WM_NCOMPPROCS install \
        && echo "Built: boost"
TagsNo tags attached.

Relationships

duplicate of 0002838 resolvedhenry OpenFOAM intel compiler support of makeCGAL 

Activities

There are no notes attached to this issue.

Issue History

Date Modified Username Field Change
2018-02-07 21:44 handrake0724 New Issue
2018-02-08 10:28 wyldckat Project OpenFOAM => ThirdParty
2018-02-08 14:41 wyldckat Relationship added duplicate of 0002838
2018-02-08 14:42 wyldckat Assigned To => henry
2018-02-08 14:42 wyldckat Status new => closed
2018-02-08 14:42 wyldckat Resolution open => duplicate