Ross Paterson | 1 Dec 2005 20:34
Picon
Favicon

cvs commit: hugs98/docs/users_guide options.xml

ross        2005/12/01 11:34:14 PST

  Modified files:
    docs/users_guide     options.xml 
  Log:
  track Cabal change

  Revision  Changes    Path
  1.21      +1 -1      hugs98/docs/users_guide/options.xml
Ross Paterson | 2 Dec 2005 13:42
Picon
Favicon

cvs commit: hugs98/src connect.h static.c

ross        2005/12/02 04:42:28 PST

  Modified files:
    src                  connect.h static.c 
  Log:
  make some functions local to static.c

  Revision  Changes    Path
  1.92      +2 -6      hugs98/src/connect.h
  1.177     +11 -6     hugs98/src/static.c
Ross Paterson | 2 Dec 2005 18:09
Picon
Favicon

cvs commit: hugs98/src static.c

ross        2005/12/02 09:09:55 PST

  Modified files:
    src                  static.c 
  Log:
  tweak

  Revision  Changes    Path
  1.178     +4 -4      hugs98/src/static.c
Ross Paterson | 10 Dec 2005 01:49
Picon
Favicon

cvs commit: hugs98/src machdep.c

ross        2005/12/09 16:49:27 PST

  Modified files:
    src                  machdep.c 
  Log:
  fix to Word74/Int64 marshalling (bug reported by Bulat Ziganshin)

  Revision  Changes    Path
  1.136     +3 -3      hugs98/src/machdep.c
Ross Paterson | 10 Dec 2005 12:25
Picon
Favicon

cvs commit: hugs98/src static.c type.c hugs98/docs/users_guide hugs_ghc.xml

ross        2005/12/10 03:25:14 PST

  Modified files:
    src                  static.c type.c 
    docs/users_guide     hugs_ghc.xml 
  Log:
  Parallel list comprehensions: look for zipN functions in both List and
  Data.List.

  Revision  Changes    Path
  1.179     +5 -3      hugs98/src/static.c
  1.81      +8 -6      hugs98/src/type.c
  1.8       +5 -0      hugs98/docs/users_guide/hugs_ghc.xml
Ross Paterson | 10 Dec 2005 12:25
Picon
Favicon

cvs commit: hugs98/docs/users_guide others.xml

ross        2005/12/10 03:25:59 PST

  Modified files:
    docs/users_guide     others.xml 
  Log:
  add sentence about ffihugs

  Revision  Changes    Path
  1.2       +6 -0      hugs98/docs/users_guide/others.xml
Jskud | 10 Dec 2005 04:53

patch for +G +L updates

This is a follow up to a hugs bug submitted last night.

The following patch updates the man page and the option processing to
reflect the changes in f +G and +L argument processing for ffihugs.

After applying the patch, 

    ffihugs will behave as follows:

	$ HUGSDIR=hugsdir src/ffihugs +G +L"silly" ~/Technical/queen.hs
	ERROR: +G is no longer needed for ffihugs and is no longer supported - ignoring it.
	ERROR: +L is no longer supported for ffihugs - put the argument (without +L) *after* the module - ignoring it.
	$ 

    the manpage will read (in part):

       ffihugs [ options ] module [ compiler_argument ] ...

	...

       Additional  arguments  for  the  C
       compiler  may be supplied via compiler_arguments.  For example, suppose
       you have some C functions in test.c and some FFI declarations for those
       functions  in  Test.hs and the code in test.c needs to be compiled with
       -lm.  Then you would compile the module with the command

              ffihugs Test.hs test.c -lm

       which generates an object file Test.so.  Then when hugs loads  Test.hs,
       it will also load Test.so.
(Continue reading)

Ross Paterson | 12 Dec 2005 15:18
Picon
Favicon

cvs commit: hugs98/src opts.c

ross        2005/12/12 06:18:04 PST

  Modified files:
    src                  opts.c 
  Log:
  warnings for obsolete options (from Joseph P. Skudlarek)

  Revision  Changes    Path
  1.23      +14 -0     hugs98/src/opts.c
Ross Paterson | 12 Dec 2005 15:18
Picon
Favicon

cvs commit: hugs98/docs hugs.1.in

ross        2005/12/12 06:18:44 PST

  Modified files:
    docs                 hugs.1.in 
  Log:
  update to track recent options changes (from Joseph P. Skudlarek)

  Revision  Changes    Path
  1.22      +30 -13    hugs98/docs/hugs.1.in
Ross Paterson | 12 Dec 2005 15:19
Picon
Favicon

Re: patch for +G +L updates

committed, thanks.

Gmane