Author Topic: FAS file not created???  (Read 2711 times)

0 Members and 1 Guest are viewing this topic.

Hrishikesh

  • Guest
FAS file not created???
« on: July 24, 2017, 09:27:08 AM »
Hi,
I am using AutoCAD 2014 on windows-7,
When I tried to compile my lisp by using make application wizard .prv & .vlx files are created in folder but not FAS file?
I dont know is it due to windows-7 or Antivirus?

Is there any other options to compile lisp & create FAS file too?

Thanks,
Hrishikesh

irneb

  • Water Moccasin
  • Posts: 1794
  • ACad R9-2016, Revit Arch 6-2016
Re: FAS file not created???
« Reply #1 on: July 24, 2017, 10:25:58 AM »
AFAIK the VLIDE's compile wizard only creates VLX files directly, no intermediate FAS files.


If you want a FAS file, then use the vlist-compile function in the VLIDE's console (or on an ACad command-line).
Common sense - the curse in disguise. Because if you have it, you have to live with those that don't.

Hrishikesh

  • Guest
Re: FAS file not created???
« Reply #2 on: July 24, 2017, 11:49:42 AM »
But when I load vlx file it will not run routine, AutoCAD shows invalid command error message.

CincyJeff

  • Newt
  • Posts: 89
Re: FAS file not created???
« Reply #3 on: July 24, 2017, 12:30:59 PM »
When I compile from .prv in the editor I get a .fas file for each .lsp file included. Are you able to use (vlisp-compile 'st "Drive:/Path/File") to get a .fas? If not, you probably have an error in the .lsp file.

ChrisCarlson

  • Guest
Re: FAS file not created???
« Reply #4 on: July 24, 2017, 01:53:22 PM »
Does your lisp routine run correctly? I could be wrong, but I do not think a .fas is created when you output to a .vlx.

VovKa

  • Water Moccasin
  • Posts: 1631
  • Ukraine
Re: FAS file not created???
« Reply #5 on: July 24, 2017, 04:08:10 PM »
.fas is always created along with the .vlx

Hrishikesh

  • Guest
Re: FAS file not created???
« Reply #6 on: July 24, 2017, 11:53:10 PM »
I asked system administrator in my office for the same. He told me that antivirus installed has treated .fas as malware so it doesn't show in folder in which compiler creates supporting files of .vlx or .prv.

MeasureUp

  • Bull Frog
  • Posts: 462
Re: FAS file not created???
« Reply #7 on: July 25, 2017, 03:02:24 AM »
Do you mind to tell what AV software is?

BTW
M_S & VovKa are right.
VLIDE creates VLX, FAS & PRV files all time, when I compile LSP.

Hrishikesh

  • Guest
Re: FAS file not created???
« Reply #8 on: July 25, 2017, 10:56:44 AM »
AV-Mcafee
Windows 7
AutoCAD 2014

Hrishikesh

  • Guest
Re: FAS file not created???
« Reply #9 on: July 26, 2017, 01:50:00 AM »
When I compile from .prv in the editor I get a .fas file for each .lsp file included. Are you able to use (vlisp-compile 'st "Drive:/Path/File") to get a .fas? If not, you probably have an error in the .lsp file.

I tried to create using vlisp-compile but no .fas file created at given path.

kdub_nz

  • Mesozoic keyThumper
  • SuperMod
  • Water Moccasin
  • Posts: 2140
  • class keyThumper<T>:ILazy<T>
Re: FAS file not created???
« Reply #10 on: July 26, 2017, 03:36:35 AM »
Is this the first time you have done this process ? If so, it is more likely to be a procedural error.

Exactly how are you doing it ?

I assume the program runs prior to compiling ?

Are you using Separate namespace ?


You may need to provide snapshots of your dialogs.


Regards,



added
Does your compile statement look something like this
Code - Auto/Visual Lisp: [Select]
  1. ;|
  2. (vlisp-compile
  3.   'st
  4.   "L:/Projects-VisualLisp-2017/SD210/Tools/KDUB_NewUcs.lsp"
  5.   "L:/Projects-VisualLisp-2017/FAS/KDUB_NewUcs"
  6. )
  7. |;
  8.  
« Last Edit: July 26, 2017, 03:40:23 AM by kdub »
Called Kerry in my other life
Retired; but they dragged me back in !

I live at UTC + 13.00

---
some people complain about loading the dishwasher.
Sometimes the question is more important than the answer.

Hrishikesh

  • Guest
Re: FAS file not created???
« Reply #11 on: July 26, 2017, 08:40:54 AM »
Is this the first time you have done this process ? If so, it is more likely to be a procedural error.

Exactly how are you doing it ?

I assume the program runs prior to compiling ?

Are you using Separate namespace ?


You may need to provide snapshots of your dialogs.


Regards,



added
Does your compile statement look something like this
Code - Auto/Visual Lisp: [Select]
  1. ;|
  2. (vlisp-compile
  3.   'st
  4.   "L:/Projects-VisualLisp-2017/SD210/Tools/KDUB_NewUcs.lsp"
  5.   "L:/Projects-VisualLisp-2017/FAS/KDUB_NewUcs"
  6. )
  7. |;
  8.  

Hi,
I have attached screenshots of procedure which i follow to make .fas
In last screenshot you can see list of files after compilation, no .fas file in list.

CincyJeff

  • Newt
  • Posts: 89
Re: FAS file not created???
« Reply #12 on: July 26, 2017, 12:10:29 PM »
Is it possible Windows is hiding the .fas file type?

Have you tried just creating the .fas file?

(vlisp-compile 'st "D:/LSP/XH")

Hrishikesh

  • Guest
Re: FAS file not created???
« Reply #13 on: July 26, 2017, 12:25:20 PM »
Is it possible Windows is hiding the .fas file type?

Have you tried just creating the .fas file?

(vlisp-compile 'st "D:/LSP/XH")
I tried to make fas file from vlisp-compile but result is same no fas file shows in folder even show all file option in widows is on. May be its a Antivirus which prevents creating fas file.