Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.
29280 Discussions

How to release application which include IMSL?

hjh2008
Beginner
897 Views
My application included the IMSL's function, it runs well in my computer(has IMSL license).
But when i release my application to other computer which has not installed IMSLmy appliction can't run and
show the warning message Unable to identify a default LM_LICENSE_FILE: For futher information,refer to the FLEXnet ....

Do i release my application which IMSL's license? How can i do? thanks!
0 Kudos
3 Replies
hjh2008
Beginner
897 Views
my code is:

program fnl

! For the static library:
INCLUDE 'link_fnl_static.h'

USE LSARG_INT
USE WRRRN_INT

PARAMETER (LDA=3, N=3)
REAL A(LDA,LDA), B(N), X(N)

DATA A/33.0, -24.0, 18.0, 16.0, -10.0, -11.0, 72.0, -57.0, 7.0/
DATA B/129.0, -96.0, 8.5/

CALL LSARG(A,B,X)

CALL WRRRN('X',X,1,N,1)

Read(*,*)
END PROGRAM fnl
0 Kudos
TimP
Honored Contributor III
897 Views
I assume your release notes will discuss how to obtain run-time licenses. It's also discussed here
0 Kudos
Steven_L_Intel1
Employee
897 Views
You have an IMSL not purchased from Intel. You will need to purchase an IMSL deployment license from Rogue Wave Software and follow their instructions for making the license available on the target system.

IMSL purchased from Intel also requires a deployment license, but our version of IMSL does not do run-time license checking.
0 Kudos
Reply