RE: unable to create DLL with GHC 5.04

2002-07-12 Thread Simon Peyton-Jones

The thing to do is to use ghc as your C compiler.
It will entirely ingore your path etc, and will faithfully
use the mingw stuff, give the compiler the right flags etc.

Perhaps this possibility is not stated clearly enough in the manual;
I see that Sigbjorn committed a note about it yesterday in response
to your mail

S

| -Original Message-
| From: Mark Tehver [mailto:[EMAIL PROTECTED]] 
| Sent: 12 July 2002 12:48
| To: Sigbjorn Finne
| Cc: [EMAIL PROTECTED]
| Subject: Re: unable to create DLL with GHC 5.04
| 
| 
| On Thu, 11 Jul 2002, Sigbjorn Finne wrote:
| 
|  Hi,
| 
|  looks as if you're mixing mingw and cygwin object
|  files. ghc-5.04 is mingw-based, so make sure you
|  feed in the flag -mno-cygwin to gcc when compiling
|  .c files.
| 
| 
| Yes, you are right - I have cygwin installed and seems that 
| ghc uses gcc.exe and ld.exe from cygwin directory and not the 
| ones from ghc-5.04/gcc-lib. The problem seems to be that 
| cygwin bin directories are in front of ghc bin directories in 
| my path. When I put the directories in reverse order, 
| everything seems ok. But note that previous ghc versions did 
| not require that. So I still think something is wrong...
| 
| Besides, even if I put gcc bin directories in front of cygwin 
| bin directories, ld.exe complains about missing dllcrt2.o 
| file although it is present in ghc-5.04/gcc-lib directory.
| 
| Regards,
| Mark
| 
| ___
| Glasgow-haskell-bugs mailing list 
| [EMAIL PROTECTED] 
| http://www.haskell.org/mailman/listinfo/glasgow-| haskell-bugs
| 
___
Glasgow-haskell-bugs mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs



Re: ANNOUNCE: GHC version 5.04 released

2002-07-12 Thread Manuel M T Chakravarty

Simon Marlow [EMAIL PROTECTED] wrote,


 The (Interactive) Glasgow Haskell Compiler -- version 5.04

 
 We are pleased to announce a new major release of the Glasgow Haskell
 Compiler (GHC), version 5.04.

RPMs built on Red Hat 7.3 are now available from

  ftp://ftp.cse.unsw.edu.au/pub/users/chak/jibunmaki/i386/ghc-5.04-1.i386.rpm
  ftp://ftp.cse.unsw.edu.au/pub/users/chak/jibunmaki/i386/ghc-prof-5.04-1.i386.rpm
  ftp://ftp.cse.unsw.edu.au/pub/users/chak/jibunmaki/i386/ghc-doc-5.04-1.i386.rpm

with the source rpm at

  ftp://ftp.cse.unsw.edu.au/pub/users/chak/jibunmaki/src/ghc-5.04-1.src.rpm

Cheers,
Manuel
___
Glasgow-haskell-users mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users



RE: ANNOUNCE: GHC version 5.04 released

2002-07-12 Thread Simon Marlow

 RPMs built on Red Hat 7.3 are now available from

Also now available from the GHC download page.

Simon
___
Glasgow-haskell-users mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users



Re: ANNOUNCE: GHC version 5.04 released

2002-07-12 Thread Donald Bruce Stewart

On Thu, Jul 11, 2002 at 10:56:08AM +0100, Simon Marlow wrote:
 

 The (Interactive) Glasgow Haskell Compiler -- version 5.04

 
 We are pleased to announce a new major release of the Glasgow Haskell
 Compiler (GHC), version 5.04.

Available is a basic OpenBSD x86 package:

ftp://ftp.cse.unsw.edu.au/pub/users/dons/ghc/ghc-5.04.tgz

This was built on an 3.1 machine. Earlier OpenBSD versions will probably
be able to handle it, with library simlinks. Note that ghci isn't
available yet.

The package source is at:
ftp://ftp.cse.unsw.edu.au/pub/users/dons/ghc/ghc-5.04-port.tgz

Cheers,
Don
___
Glasgow-haskell-users mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users



make -j2 fails on SMP with ghc-5.04

2002-07-12 Thread Shae Matijs Erisson

I have a dual Athlon box, make -j2 fails, but make works.
Is that normal?
-- 
Shae Matijs Erisson - http://www.webwitches.com/~shae/


___
Glasgow-haskell-users mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users



Unregisterised build

2002-07-12 Thread Christoph Reichenbach

Hi,


I'm trying to do an unregistered build of ghc, using the cross-port
script. However, compilation aborts at the following point:

haskell/b1/libraries/base  ../../ghc/compiler/ghc-inplace -ldl
-fglasgow-exts -cpp -Iinclude -funbox-strict-fields -package-name base -O
-H24m -keep-hc-files-too -optc-DNO_REGS -optc-DUSE_MINIINTERPRETER
-fno-asm-mangling -funregisterised -fvia-C  -split-objs-c GHC/Base.lhs
-o GHC/Base.o

The problem appears to be a conflict between '-split-objs' and
'-fno-asm-mangling' (which, together with '-funregisterised', is supposed
to have been replaced by '-unreg' now, if I'm not mistaken).

However, -split-objs seems to be required for building libraries, whereas
-fno-asm-mangling is probably needed for an unregisterised build (I'm just
guessing here...).

How do I compile libraries for an unregisterised build, then?

(Alternatively: Does anyone happen to have the resulting .hc files from
one lying around?)


Background: I'm trying to get ghc up and running on Alpha/Linux (I'm
reluctant to call it 'porting', since the hard part has been done by Ken
Shan already, as far as I know).


Thanks in advance for any help!

llap,
 Christoph

___
Glasgow-haskell-users mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users



Re: ANNOUNCE: GHC version 5.04 released

2002-07-12 Thread Manuel M T Chakravarty

Simon Marlow [EMAIL PROTECTED] wrote,


 The (Interactive) Glasgow Haskell Compiler -- version 5.04

 
 We are pleased to announce a new major release of the Glasgow Haskell
 Compiler (GHC), version 5.04.

RPMs built on Red Hat 7.3 are now available from

  ftp://ftp.cse.unsw.edu.au/pub/users/chak/jibunmaki/i386/ghc-5.04-1.i386.rpm
  ftp://ftp.cse.unsw.edu.au/pub/users/chak/jibunmaki/i386/ghc-prof-5.04-1.i386.rpm
  ftp://ftp.cse.unsw.edu.au/pub/users/chak/jibunmaki/i386/ghc-doc-5.04-1.i386.rpm

with the source rpm at

  ftp://ftp.cse.unsw.edu.au/pub/users/chak/jibunmaki/src/ghc-5.04-1.src.rpm

Cheers,
Manuel
___
Haskell mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/haskell



Re: C2hs compilation error

2002-07-12 Thread Manuel M T Chakravarty

Kenny,

 When I try to compile my HS code with some open source C code using C2HS 0.10.14, I 
encountered this error,
 
 c2hs --cppopts='-I/home/luzm/sphinx2-0.4/include/ -pedantic' listener.h Listener.chs
 c2hs: Generic fatal error.
 
 /usr/include/gconv.h:172: (column 3) [FATAL]
Syntax error!
   The symbol `__extension__' does not fit here.
 
 Can someone tell me when it probably goes wrong?

__extension__ is a GNU C extension keyword, which c2hs
didn't recognise at all positions where it can appear.
Please try again with version 0.10.15 that you can find on
the c2hs web site.

Cheers,
Manuel
___
Haskell mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/haskell



URGENT RESPONSE NEEDED

2002-07-12 Thread MAXWELL EZE

REQUEST FOR URGENT /CONFIDENTIAL BUSINESSRELATIONSHIP.

I am the Financial Controller, National Electric Power Authority (NEPA)
here in Lagos, Nigeria. I am seeking for assistance of a reliable foreigner through 
whom I can transfer the sum of US$38,600.00(Thirty-Eight Million, Six Hundred Thousand 
U. S. Dollars) which arose from the deliberate over-inflated contract value of the 
general expansion of the Kanji Dam Thermal Station on behalf of National Electric 
Power Authority (NEPA) for increased
energy generation to Nigeria and some other Western African Countries.

The present government of chief Olusegun Obasanjo through the chairman contract award 
committee National Electric Power Authority awarded the contract to an expatriate firm 
with the consideration of 10% commission agreement on the total contract value. The 
contract has been completed
and the contractor has long been paid, we are left with this US$38,600,000.00 being 
our own share that is remaining in the federal government account. The current 
favorable political / economic climate in the country now presented an opportunity for 
this money to be transferred out of the country. My contact in the federal ministry
of finance have given me a go ahead advice to begin the process of the remittance, 
hence I have set in motion the machinery for the take off of this transaction and 
further actions will commence immediately I hear from you.

At the conclusion of the transfer into your nominated account, 20% of this sum would 
be for you, 5% would be used to reimburse all expenses made during the processing of 
the transfer by both parties, while 75% is for me. The nature of your business is not 
particular relevant for the transaction.
All I require is your willingness to co-operate and assurance that my own share will 
be given to me when this money is transferred into your account. All necessary 
precautions have been taken to ensure a no risk situation on the sides of both parties 
and it is believed that this conclusion of this transaction will not last more than 14 
working days.

Since I have no knowledge of business, my plan is to invest this money into real 
estate, stock and I can also invest in some other profitable business in your country 
based on your advice because many of my years has been spent as civil servant, and I 
may likely resign from government service to private business after this money is 
transferred into your account.
Please if this proposal is acceptable to you, or if you have any questions feel free 
to contact me on the above e-mail address.
 I will oblige you with further information and please I need your private 
telephone/fax numbers, for easy and confidential communication.

Best regards,

MAXWELL EZE


___
Haskell mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/haskell



haskell@haskell.org

2002-07-12 Thread ee31
Title: µÚÈý½ìÖйú¹ÜÀí´´Ð´ó»á__ÍøÂçÖ§³Ö£ºµÂ²©(ÏÃÃÅ)¹ÜÀí×ÉѯÓÐÏÞ¹«Ë¾£¨http://www.deboio.com.cn£©





  

  
 
  

  





 
  
·ÖÏí¹ÜÀí´óʦµÄÖǻۣ¬¼³È¡ÓÅÐãÆóÒµ¼ÒµÄÃØóÅ£¬Ö±½ÓÓë³É¹¦ÈËÊ¿Ãæ¶ÔÃæµÄ½»Á÷£¡
  

  
   

   
 

  
   
¼°Ê±¶¯Ì¬ 
  ÑûÇ뺯 ´ó»á¸Å¿ö 
  »áÒé˵Ã÷ ¼Î±öÌâÄ¿ 
  ÐÂÎű¨µÀ ÔÞÖú 
  ÆóÒµÐû´« ÁªÏµ·½Ê½
  

  

 
  
  꿃챬̞

  
  
 
   
Ö÷°ìµ¥Î»
  
  ÏÃÃÅÊÐÈËÃñÕþ¸® 
  Öйú¹ÜÀí¿ÆѧÑо¿Ôº
  Öйú¹ú¼Ê¾­¼Ã¼¼Êõ½»Á÷ÖÐÐÄ 
  ·¢ÏÖÔÓÖ¾Éç
  
  ³Ð°ìµ¥Î»
  
  ÏÃÃÅÊлáÒéÕ¹ÀÀҵЭ»á 
  Öйú(ÏÃÃÅ)¹ú¼ÊͶ×Ê´Ù½øÖÐÐÄ
  ºêÌ©¼¯ÍÅÓÐÏÞ¹«Ë¾
  
  Э°ìµ¥Î»
  
  ÏÃÃÅÈÕ±¨Éç
  
  ÍøÂçÍƹã
  
  µÂ²©(ÏÃÃÅ)¹ÜÀí×ÉѯÓÐÏÞ¹«Ë¾
  http://www.deboio.com.cn

   

  

¼° ʱ ¶¯ ̬

  
  

 
  Çë²Î»áÈËÔ±Ïò³Ð°ìµ¥Î»£¨0592-5207557£©´÷С½ã»ò´úÀí»ú¹¹£¨0592-5116060£©ÖÜС½ãÁìÈ¡²Î»áÈ볡ȯ¡¢Çë¼í¡¢ÓòÍȯµÈ¡£
  ÁìÈ¡µØµã£º
Ôûª»áÕ¹¾Æµê´óÌÃ
¼ÎºÌ·»ãÌÚ´óÏÃ15A03AÊÒ
ºþ±õÄÏ·619ºÅSOHO´óÏÃÊ®¶þÂ¥1220#
  
  
  

  
  



  


  

  

  


___
Haskell mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/haskell