libtool: error: unknown tag cxx #16319
-
Hell, I try to install Moose on a work station. Everything goes well. But when
It shows : libtool: error: unknown tag cxx |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 11 replies
-
Could anyone help? |
Beta Was this translation helpful? Give feedback.
-
What operating system are you using? Can you post some of the context of the error? |
Beta Was this translation helpful? Give feedback.
-
@lindsayad /usr/bin/grep is also hard coded? Okay, so this feels like a moose-libmesh issue. There is a similar discussion going on about contrib/bin/libtool in moose-libmesh #16123. I think your only option will be to build libMesh yourself, and not use the one supplied by us. Please do the following: conda deactivate
conda env remove -n moose
conda create -n moose moose-petsc moose-tools
conda activate moose The above basically re-installs everything needed to build moose except libMesh. So we will need to build that manually. But first, let's clean the moose repository, just in case the previous failed build left any lingering issues: cd /home/lizhen1/Project/moose
git clean -xfd Once moose is clean, we can try to build libMesh: export MOOSE_JOBS=4
cd /home/lizhen1/Project/moose
scripts/update_and_rebuild_libmesh.sh Hopefully, you can now build your application: cd /home/lizhen1/Project/big_cat
make -j 4 |
Beta Was this translation helpful? Give feedback.
-
Can we (@milljm) not patch the generated |
Beta Was this translation helpful? Give feedback.
-
This was fixed, along with /usr/bin/sed early this morning. Please perform the following: conda update --all And try to build again. |
Beta Was this translation helpful? Give feedback.
This was fixed, along with /usr/bin/sed early this morning. Please perform the following:
And try to build again.