Re: Offloading: libgfortran, libm dependencies

2015-10-09 Thread Thomas Schwinge
Hi Bernd! On Fri, 9 Oct 2015 14:43:24 +0200, Bernd Schmidt wrote: > On 10/02/2015 05:20 PM, Thomas Schwinge wrote: > > How should we handle libgfortran and libm dependencies in offloaded code? > > > > As the linking requirements especially regarding libgfortran may be > > different for each offlo

Re: Offloading: libgfortran, libm dependencies

2015-10-09 Thread Bernd Schmidt
On 10/02/2015 05:20 PM, Thomas Schwinge wrote: How should we handle libgfortran and libm dependencies in offloaded code? As the linking requirements especially regarding libgfortran may be different for each offloading target (shared and/or static libraries supported, static linking enforced, li

Offloading: libgfortran, libm dependencies

2015-10-02 Thread Thomas Schwinge
Hi! For example, Fortran source code that uses the ABORT intrinsic, such as: program main implicit none print *, "CheCKpOInT" !$omp target call abort !$omp end target end program main ... currently indeed does terminate program execution, for examp