Skip to content
Snippets Groups Projects
Commit fc9bac9a authored by Filippo Cremonese's avatar Filippo Cremonese
Browse files

GCC: do not install libcc1.so

parent c9f1b997
No related branches found
No related tags found
No related merge requests found
......@@ -139,12 +139,13 @@ install: |
NEW_GCC_PATH="(@= new_gcc_path(triple=triple, gcc_version=gcc_version) @)"
if test -e ${DESTDIR}${NEW_GCC_PATH}/gcc && ! test -e ${DESTDIR}${NEW_GCC_PATH}/cc; then
ln -s gcc ${DESTDIR}${NEW_GCC_PATH}/cc
if test -e "${DESTDIR}${NEW_GCC_PATH}/gcc" && ! test -e "${DESTDIR}${NEW_GCC_PATH}/cc"; then
ln -s gcc "${DESTDIR}${NEW_GCC_PATH}/cc"
fi
if test -e ${DESTDIR}${NEW_GCC_PATH}/g++ && ! test -e ${DESTDIR}${NEW_GCC_PATH}/c++; then
ln -s g++ ${DESTDIR}${NEW_GCC_PATH}/c++
if test -e "${DESTDIR}${NEW_GCC_PATH}/g++" && ! test -e "${DESTDIR}${NEW_GCC_PATH}/c++"; then
ln -s g++ "${DESTDIR}${NEW_GCC_PATH}/c++"
fi
rm -f "${DESTDIR}${ORCHESTRA_ROOT}"/lib64/libcc1.*
dependencies: #@ dependencies
build_dependencies: #@ build_dependencies
#@ end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment