diff options
author | Richard Purdie <rpurdie@rpsys.net> | 2013-12-05 00:49:12 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-12-05 12:32:11 +0000 |
commit | ae8c17be2845eff2be8394a5d9a45e6aa321c33d (patch) | |
tree | e7c053fe488e3c9026c74c1c447fa504a3898ec6 /meta/conf/local.conf.sample.extended | |
parent | a5e7ee5770b9e0cf719c573efffd874440f74289 (diff) | |
download | openembedded-core-ae8c17be2845eff2be8394a5d9a45e6aa321c33d.tar.gz openembedded-core-ae8c17be2845eff2be8394a5d9a45e6aa321c33d.tar.bz2 openembedded-core-ae8c17be2845eff2be8394a5d9a45e6aa321c33d.zip |
bitbake.conf/native.bbclass: Use FC instead of F77 for fortran
gcc tooling appears to be standardising around the FC variable naming.
This patch changes the F77 namespace to FC instead and use the default
gfortran compiler. If anyone needs the F77 variables or tools, those
can still be made on a case by case basis.
Also updates local.conf.sample.extended accordingly.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/local.conf.sample.extended')
-rw-r--r-- | meta/conf/local.conf.sample.extended | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/meta/conf/local.conf.sample.extended b/meta/conf/local.conf.sample.extended index dd44110c1a..00716f9bf2 100644 --- a/meta/conf/local.conf.sample.extended +++ b/meta/conf/local.conf.sample.extended @@ -241,10 +241,9 @@ # Enabling FORTRAN # Note this is not officially supported and is just illustrated here to # show an example of how it can be done -FORTRAN_forcevariable = ",fortran" -RUNTIMETARGET_append_pn-gcc-runtime = " libquadmath libgfortran" -export BUILD_FC = "${CCACHE}${BUILD_PREFIX}gfortran ${BUILD_CC_ARCH}" -export FC = "${CCACHE}${HOST_PREFIX}gfortran ${HOST_CC_ARCH}" +# You'll also need your fortran recipe to depend on libgfortran +#FORTRAN_forcevariable = ",fortran" +#RUNTIMETARGET_append_pn-gcc-runtime = " libquadmath" # # Kernel image features |