Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
29396 討論

How to release application which include IMSL?

hjh2008
初學者
1,156 檢視
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 積分
3 回應
hjh2008
初學者
1,156 檢視
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
TimP
榮譽貢獻者 III
1,156 檢視
I assume your release notes will discuss how to obtain run-time licenses. It's also discussed here
Steven_L_Intel1
1,156 檢視
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.
回覆