On 9/06/2015, at 11:10 am, Lehmann, Patrick <[email protected]> 
wrote:

> 
> so ignore my tests on ghdl 0.31 and 0.32rc1 on windows.
> I cannot test it without many changes to my environment ...
> ghdl uses the analyzed libs from 0.33dev :(


You can test it without your library:

package physical is
  type FREQ is range 0 to INTEGER'high units
    Hz;
    kHz = 1000 Hz;
    MHz = 1000 kHz;
    GHz = 1000 MHz;
--    THz = 1000 GHz;
  end units;
end package;
 
--library PoC;
--use     PoC.physical.all;
use work.physical.all;

entity misc_Noise_tb is
end;
 
architecture test of misc_Noise_tb is
  constant CLOCK_FREQ    : FREQ    := 100.0 MHz;
begin
  -- empty
end architecture;

I think any data points on where it goes bad on Windows are worthwhile.

You could 'hunt' further down the release tree assuming ghdl mcode is 
relatively painless to build on Windows.



_______________________________________________
Ghdl-discuss mailing list
[email protected]
https://mail.gna.org/listinfo/ghdl-discuss

Reply via email to