Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH] gcc-runtime: Remove libgfortran data from receipe
@ 2015-01-15 16:31 Daniel Dragomir
  2015-01-15 16:40 ` Richard Purdie
  0 siblings, 1 reply; 4+ messages in thread
From: Daniel Dragomir @ 2015-01-15 16:31 UTC (permalink / raw)
  To: openembedded-core

Remove libgfortran packages from PACKAGES list and skip them at compiling
and installing as long as libgfortran has separate receipe since commit

5bde5d9b39ea67f19a1a6aedd0c08c6cfedcbe5f
gcc: Allow fortran to build successfully in 4.8

Otherwise, when fortran support will be enabled in the compiler, both
lingfortran and gcc-runtime receipes will create the same files and will
try to install them. This will cause errors:

ERROR: The recipe libgfortran is trying to install files into a shared
area when those files already exist. Those files and their manifest
location are: ...
Please verify which recipe should provide the above files.

Signed-off-by: Daniel Dragomir <daniel.dragomir@windriver.com>
---
 meta/recipes-devtools/gcc/gcc-runtime.inc | 41 ++++++++++++-------------------
 1 file changed, 16 insertions(+), 25 deletions(-)

diff --git a/meta/recipes-devtools/gcc/gcc-runtime.inc b/meta/recipes-devtools/gcc/gcc-runtime.inc
index 167869e..c3b4a46 100644
--- a/meta/recipes-devtools/gcc/gcc-runtime.inc
+++ b/meta/recipes-devtools/gcc/gcc-runtime.inc
@@ -22,28 +22,34 @@ do_configure () {
 	target=`echo ${TARGET_SYS} | sed -e s#-${SDKPKGSUFFIX}##`
 	hardlinkdir ${STAGING_INCDIR_NATIVE}/gcc-build-internal-$mtarget ${B}
 	for d in libgcc ${RUNTIMETARGET}; do
-		echo "Configuring $d"
-		rm -rf ${B}/$target/$d/
-		mkdir -p ${B}/$target/$d/
-		cd ${B}/$target/$d/
-		chmod a+x ${S}/$d/configure
-		${S}/$d/configure ${CONFIGUREOPTS} ${EXTRA_OECONF}
+		if [ "$d" != "libgfortran" ]; then
+			echo "Configuring $d"
+			rm -rf ${B}/$target/$d/
+			mkdir -p ${B}/$target/$d/
+			cd ${B}/$target/$d/
+			chmod a+x ${S}/$d/configure
+			${S}/$d/configure ${CONFIGUREOPTS} ${EXTRA_OECONF}
+		fi
 	done
 }
 
 do_compile () {
 	target=`echo ${TARGET_SYS} | sed -e s#-${SDKPKGSUFFIX}##`
 	for d in libgcc ${RUNTIMETARGET}; do
-		cd ${B}/$target/$d/
-		oe_runmake MULTIBUILDTOP=${B}/$target/$d/
+		if [ "$d" != "libgfortran" ]; then
+			cd ${B}/$target/$d/
+			oe_runmake MULTIBUILDTOP=${B}/$target/$d/
+		fi
 	done
 }
 
 do_install () {
 	target=`echo ${TARGET_SYS} | sed -e s#-${SDKPKGSUFFIX}##`
 	for d in ${RUNTIMETARGET}; do
-		cd ${B}/$target/$d/
-		oe_runmake 'DESTDIR=${D}' MULTIBUILDTOP=${B}/$target/$d/ install
+		if [ "$d" != "libgfortran" ]; then
+			cd ${B}/$target/$d/
+			oe_runmake 'DESTDIR=${D}' MULTIBUILDTOP=${B}/$target/$d/ install
+		fi
 	done
 	rm -rf ${D}${infodir}/libgomp.info ${D}${infodir}/dir
 	rm -rf ${D}${infodir}/libquadmath.info ${D}${infodir}/dir
@@ -76,9 +82,6 @@ PACKAGES = "\
     libssp \
     libssp-dev \
     libssp-staticdev \
-    libgfortran \
-    libgfortran-dev \
-    libgfortran-staticdev \
     libmudflap \
     libmudflap-dev \
     libmudflap-staticdev \
@@ -131,18 +134,6 @@ FILES_libssp-dev = "\
 "
 FILES_libssp-staticdev = "${libdir}/libssp*.a"
 
-FILES_libgfortran = "${libdir}/libgfortran.so.*"
-FILES_libgfortran-dev = "\
-    ${libdir}/libgfortran*.so \
-    ${libdir}/libgfortran.spec \
-    ${libdir}/libgfortran.la \
-    ${libdir}/gcc/${TARGET_SYS}/${BINV}/libgfortranbegin.* \
-    ${libdir}/gcc/${TARGET_SYS}/${BINV}/libcaf_single* \
-"
-FILES_libgfortran-staticdev = "${libdir}/libgfortran.a"
-
-INSANE_SKIP_${MLPREFIX}libgfortran-dev = "staticdev"
-
 FILES_libquadmath = "${libdir}/libquadmath*.so.*"
 FILES_libquadmath-dev = "\
     ${libdir}/gcc/${TARGET_SYS}/${BINV}/include/quadmath* \
-- 
1.8.1.4



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] gcc-runtime: Remove libgfortran data from receipe
  2015-01-15 16:31 [PATCH] gcc-runtime: Remove libgfortran data from receipe Daniel Dragomir
@ 2015-01-15 16:40 ` Richard Purdie
  2015-01-16 18:31   ` Dragomir, Daniel
  0 siblings, 1 reply; 4+ messages in thread
From: Richard Purdie @ 2015-01-15 16:40 UTC (permalink / raw)
  To: Daniel Dragomir; +Cc: openembedded-core

On Thu, 2015-01-15 at 18:31 +0200, Daniel Dragomir wrote:
> Remove libgfortran packages from PACKAGES list and skip them at compiling
> and installing as long as libgfortran has separate receipe since commit
> 
> 5bde5d9b39ea67f19a1a6aedd0c08c6cfedcbe5f
> gcc: Allow fortran to build successfully in 4.8
> 
> Otherwise, when fortran support will be enabled in the compiler, both
> lingfortran and gcc-runtime receipes will create the same files and will
> try to install them. This will cause errors:
> 
> ERROR: The recipe libgfortran is trying to install files into a shared
> area when those files already exist. Those files and their manifest
> location are: ...
> Please verify which recipe should provide the above files.
> 
> Signed-off-by: Daniel Dragomir <daniel.dragomir@windriver.com>
> ---
>  meta/recipes-devtools/gcc/gcc-runtime.inc | 41 ++++++++++++-------------------
>  1 file changed, 16 insertions(+), 25 deletions(-)
> 
> diff --git a/meta/recipes-devtools/gcc/gcc-runtime.inc b/meta/recipes-devtools/gcc/gcc-runtime.inc
> index 167869e..c3b4a46 100644
> --- a/meta/recipes-devtools/gcc/gcc-runtime.inc
> +++ b/meta/recipes-devtools/gcc/gcc-runtime.inc
> @@ -22,28 +22,34 @@ do_configure () {
>  	target=`echo ${TARGET_SYS} | sed -e s#-${SDKPKGSUFFIX}##`
>  	hardlinkdir ${STAGING_INCDIR_NATIVE}/gcc-build-internal-$mtarget ${B}
>  	for d in libgcc ${RUNTIMETARGET}; do
> -		echo "Configuring $d"
> -		rm -rf ${B}/$target/$d/
> -		mkdir -p ${B}/$target/$d/
> -		cd ${B}/$target/$d/
> -		chmod a+x ${S}/$d/configure
> -		${S}/$d/configure ${CONFIGUREOPTS} ${EXTRA_OECONF}
> +		if [ "$d" != "libgfortran" ]; then

Why would libgfortran be in RUNTIMETARGET? Surely it would be better
just to ensure it isn't rather than ignore it?

Cheers,

Richard

> +			echo "Configuring $d"
> +			rm -rf ${B}/$target/$d/
> +			mkdir -p ${B}/$target/$d/
> +			cd ${B}/$target/$d/
> +			chmod a+x ${S}/$d/configure
> +			${S}/$d/configure ${CONFIGUREOPTS} ${EXTRA_OECONF}
> +		fi
>  	done
>  }
>  
>  do_compile () {
>  	target=`echo ${TARGET_SYS} | sed -e s#-${SDKPKGSUFFIX}##`
>  	for d in libgcc ${RUNTIMETARGET}; do
> -		cd ${B}/$target/$d/
> -		oe_runmake MULTIBUILDTOP=${B}/$target/$d/
> +		if [ "$d" != "libgfortran" ]; then
> +			cd ${B}/$target/$d/
> +			oe_runmake MULTIBUILDTOP=${B}/$target/$d/
> +		fi
>  	done
>  }
>  
>  do_install () {
>  	target=`echo ${TARGET_SYS} | sed -e s#-${SDKPKGSUFFIX}##`
>  	for d in ${RUNTIMETARGET}; do
> -		cd ${B}/$target/$d/
> -		oe_runmake 'DESTDIR=${D}' MULTIBUILDTOP=${B}/$target/$d/ install
> +		if [ "$d" != "libgfortran" ]; then
> +			cd ${B}/$target/$d/
> +			oe_runmake 'DESTDIR=${D}' MULTIBUILDTOP=${B}/$target/$d/ install
> +		fi
>  	done
>  	rm -rf ${D}${infodir}/libgomp.info ${D}${infodir}/dir
>  	rm -rf ${D}${infodir}/libquadmath.info ${D}${infodir}/dir
> @@ -76,9 +82,6 @@ PACKAGES = "\
>      libssp \
>      libssp-dev \
>      libssp-staticdev \
> -    libgfortran \
> -    libgfortran-dev \
> -    libgfortran-staticdev \
>      libmudflap \
>      libmudflap-dev \
>      libmudflap-staticdev \
> @@ -131,18 +134,6 @@ FILES_libssp-dev = "\
>  "
>  FILES_libssp-staticdev = "${libdir}/libssp*.a"
>  
> -FILES_libgfortran = "${libdir}/libgfortran.so.*"
> -FILES_libgfortran-dev = "\
> -    ${libdir}/libgfortran*.so \
> -    ${libdir}/libgfortran.spec \
> -    ${libdir}/libgfortran.la \
> -    ${libdir}/gcc/${TARGET_SYS}/${BINV}/libgfortranbegin.* \
> -    ${libdir}/gcc/${TARGET_SYS}/${BINV}/libcaf_single* \
> -"
> -FILES_libgfortran-staticdev = "${libdir}/libgfortran.a"
> -
> -INSANE_SKIP_${MLPREFIX}libgfortran-dev = "staticdev"
> -
>  FILES_libquadmath = "${libdir}/libquadmath*.so.*"
>  FILES_libquadmath-dev = "\
>      ${libdir}/gcc/${TARGET_SYS}/${BINV}/include/quadmath* \
> -- 
> 1.8.1.4
> 




^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] gcc-runtime: Remove libgfortran data from receipe
  2015-01-15 16:40 ` Richard Purdie
@ 2015-01-16 18:31   ` Dragomir, Daniel
  2015-01-16 23:32     ` Richard Purdie
  0 siblings, 1 reply; 4+ messages in thread
From: Dragomir, Daniel @ 2015-01-16 18:31 UTC (permalink / raw)
  To: Richard Purdie; +Cc: openembedded-core@lists.openembedded.org


>On Thu, 2015-01-15 at 18:31 +0200, Daniel Dragomir wrote:
>> Remove libgfortran packages from PACKAGES list and skip them at compiling
>> and installing as long as libgfortran has separate receipe since commit
>>
>> 5bde5d9b39ea67f19a1a6aedd0c08c6cfedcbe5f
>> gcc: Allow fortran to build successfully in 4.8
>>
>> Otherwise, when fortran support will be enabled in the compiler, both
>> lingfortran and gcc-runtime receipes will create the same files and will
>> try to install them. This will cause errors:
>>
>> ERROR: The recipe libgfortran is trying to install files into a shared
>> area when those files already exist. Those files and their manifest
>> location are: ...
>> Please verify which recipe should provide the above files.
>>
>> Signed-off-by: Daniel Dragomir <daniel.dragomir@windriver.com>
>> ---
>>  meta/recipes-devtools/gcc/gcc-runtime.inc | 41 ++++++++++++-------------------
>>  1 file changed, 16 insertions(+), 25 deletions(-)
>>
>> diff --git a/meta/recipes-devtools/gcc/gcc-runtime.inc b/meta/recipes-devtools/gcc/gcc-runtime.inc
>> index 167869e..c3b4a46 100644
>> --- a/meta/recipes-devtools/gcc/gcc-runtime.inc
>> +++ b/meta/recipes-devtools/gcc/gcc-runtime.inc
>> @@ -22,28 +22,34 @@ do_configure () {
>>       target=`echo ${TARGET_SYS} | sed -e s#-${SDKPKGSUFFIX}##`
>>       hardlinkdir ${STAGING_INCDIR_NATIVE}/gcc-build-internal-$mtarget ${B}
>>       for d in libgcc ${RUNTIMETARGET}; do
>> -             echo "Configuring $d"
>> -             rm -rf ${B}/$target/$d/
>> -             mkdir -p ${B}/$target/$d/
>> -             cd ${B}/$target/$d/
>> -             chmod a+x ${S}/$d/configure
>> -             ${S}/$d/configure ${CONFIGUREOPTS} ${EXTRA_OECONF}
>> +             if [ "$d" != "libgfortran" ]; then
>
>Why would libgfortran be in RUNTIMETARGET? Surely it would be better
>just to ensure it isn't rather than ignore it?
>
>Cheers,
>
>Richard

My mistake.
I didn't noticed that I had in my layer, in a bbappend for gcc-runtime this line

RUNTIMETARGET += "libgfortran"

because I added fortran support in dora branch.
And in dora the receipes (gcc-runtime and libgfortran) were not splited.

That's why I added those "if" statements to skip libgfortran.

I remove the line and iny layer I added "libgfortran" in DEPENDS for image to build it.

Do you thing that we still need to ensure libgfortran is not in RUNTIMETARGET?
Or I should remove the "if" statements and create a patch just with the other changes?

BR,
Daniel


>> +                     echo "Configuring $d"
>> +                     rm -rf ${B}/$target/$d/
>> +                     mkdir -p ${B}/$target/$d/
>> +                     cd ${B}/$target/$d/
>> +                     chmod a+x ${S}/$d/configure
>> +                     ${S}/$d/configure ${CONFIGUREOPTS} ${EXTRA_OECONF}
>> +             fi
>>      done
>>  }
>>
>>  do_compile () {
>>       target=`echo ${TARGET_SYS} | sed -e s#-${SDKPKGSUFFIX}##`
>>       for d in libgcc ${RUNTIMETARGET}; do
>> -             cd ${B}/$target/$d/
>> -             oe_runmake MULTIBUILDTOP=${B}/$target/$d/
>> +             if [ "$d" != "libgfortran" ]; then
>> +                     cd ${B}/$target/$d/
>> +                     oe_runmake MULTIBUILDTOP=${B}/$target/$d/
>> +             fi
>>       done
>>  }
>>
>>  do_install () {
>>       target=`echo ${TARGET_SYS} | sed -e s#-${SDKPKGSUFFIX}##`
>>       for d in ${RUNTIMETARGET}; do
>> -             cd ${B}/$target/$d/
>> -             oe_runmake 'DESTDIR=${D}' MULTIBUILDTOP=${B}/$target/$d/ install
>> +             if [ "$d" != "libgfortran" ]; then
>> +                     cd ${B}/$target/$d/
>> +                     oe_runmake 'DESTDIR=${D}' MULTIBUILDTOP=${B}/$target/$d/ install
>> +             fi
>>       done
>>       rm -rf ${D}${infodir}/libgomp.info ${D}${infodir}/dir
>>       rm -rf ${D}${infodir}/libquadmath.info ${D}${infodir}/dir
>> @@ -76,9 +82,6 @@ PACKAGES = "\
>>      libssp \
>>      libssp-dev \
>>      libssp-staticdev \
>> -    libgfortran \
>> -    libgfortran-dev \
>> -    libgfortran-staticdev \
>>      libmudflap \
>>      libmudflap-dev \
>>      libmudflap-staticdev \
>> @@ -131,18 +134,6 @@ FILES_libssp-dev = "\
>>  "
>>  FILES_libssp-staticdev = "${libdir}/libssp*.a"
>>
>> -FILES_libgfortran = "${libdir}/libgfortran.so.*"
>> -FILES_libgfortran-dev = "\
>> -    ${libdir}/libgfortran*.so \
>> -    ${libdir}/libgfortran.spec \
>> -    ${libdir}/libgfortran.la \
>> -    ${libdir}/gcc/${TARGET_SYS}/${BINV}/libgfortranbegin.* \
>> -    ${libdir}/gcc/${TARGET_SYS}/${BINV}/libcaf_single* \
>> -"
>> -FILES_libgfortran-staticdev = "${libdir}/libgfortran.a"
>> -
>> -INSANE_SKIP_${MLPREFIX}libgfortran-dev = "staticdev"
>> -
>>  FILES_libquadmath = "${libdir}/libquadmath*.so.*"
>>  FILES_libquadmath-dev = "\
>>      ${libdir}/gcc/${TARGET_SYS}/${BINV}/include/quadmath* \
>> --
>> 1.8.1.4
>>




^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] gcc-runtime: Remove libgfortran data from receipe
  2015-01-16 18:31   ` Dragomir, Daniel
@ 2015-01-16 23:32     ` Richard Purdie
  0 siblings, 0 replies; 4+ messages in thread
From: Richard Purdie @ 2015-01-16 23:32 UTC (permalink / raw)
  To: Dragomir, Daniel; +Cc: openembedded-core@lists.openembedded.org

On Fri, 2015-01-16 at 18:31 +0000, Dragomir, Daniel wrote:
> >On Thu, 2015-01-15 at 18:31 +0200, Daniel Dragomir wrote:
> >> Remove libgfortran packages from PACKAGES list and skip them at compiling
> >> and installing as long as libgfortran has separate receipe since commit
> >>
> >> 5bde5d9b39ea67f19a1a6aedd0c08c6cfedcbe5f
> >> gcc: Allow fortran to build successfully in 4.8
> >>
> >> Otherwise, when fortran support will be enabled in the compiler, both
> >> lingfortran and gcc-runtime receipes will create the same files and will
> >> try to install them. This will cause errors:
> >>
> >> ERROR: The recipe libgfortran is trying to install files into a shared
> >> area when those files already exist. Those files and their manifest
> >> location are: ...
> >> Please verify which recipe should provide the above files.
> >>
> >> Signed-off-by: Daniel Dragomir <daniel.dragomir@windriver.com>
> >> ---
> >>  meta/recipes-devtools/gcc/gcc-runtime.inc | 41 ++++++++++++-------------------
> >>  1 file changed, 16 insertions(+), 25 deletions(-)
> >>
> >> diff --git a/meta/recipes-devtools/gcc/gcc-runtime.inc b/meta/recipes-devtools/gcc/gcc-runtime.inc
> >> index 167869e..c3b4a46 100644
> >> --- a/meta/recipes-devtools/gcc/gcc-runtime.inc
> >> +++ b/meta/recipes-devtools/gcc/gcc-runtime.inc
> >> @@ -22,28 +22,34 @@ do_configure () {
> >>       target=`echo ${TARGET_SYS} | sed -e s#-${SDKPKGSUFFIX}##`
> >>       hardlinkdir ${STAGING_INCDIR_NATIVE}/gcc-build-internal-$mtarget ${B}
> >>       for d in libgcc ${RUNTIMETARGET}; do
> >> -             echo "Configuring $d"
> >> -             rm -rf ${B}/$target/$d/
> >> -             mkdir -p ${B}/$target/$d/
> >> -             cd ${B}/$target/$d/
> >> -             chmod a+x ${S}/$d/configure
> >> -             ${S}/$d/configure ${CONFIGUREOPTS} ${EXTRA_OECONF}
> >> +             if [ "$d" != "libgfortran" ]; then
> >
> >Why would libgfortran be in RUNTIMETARGET? Surely it would be better
> >just to ensure it isn't rather than ignore it?
> >
> >Cheers,
> >
> >Richard
> 
> My mistake.
> I didn't noticed that I had in my layer, in a bbappend for gcc-runtime this line
> 
> RUNTIMETARGET += "libgfortran"
> 
> because I added fortran support in dora branch.
> And in dora the receipes (gcc-runtime and libgfortran) were not splited.
> 
> That's why I added those "if" statements to skip libgfortran.
> 
> I remove the line and iny layer I added "libgfortran" in DEPENDS for image to build it.
> 
> Do you thing that we still need to ensure libgfortran is not in RUNTIMETARGET?
> Or I should remove the "if" statements and create a patch just with the other changes?

I think a patch with just the other changes should be fine now I
understand how you reached this point.

Cheers,

Richard





^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-01-16 23:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-15 16:31 [PATCH] gcc-runtime: Remove libgfortran data from receipe Daniel Dragomir
2015-01-15 16:40 ` Richard Purdie
2015-01-16 18:31   ` Dragomir, Daniel
2015-01-16 23:32     ` Richard Purdie

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox