aboutsummaryrefslogtreecommitdiffstats
path: root/tools/lzma-old
Commit message (Collapse)AuthorAgeFilesLines
* tools/zlib: move zlib build to toolsHauke Mehrtens2018-04-282-0/+13
| | | | | | | | | | | | | This allows us to link the other tools against our libz and we do not need the system zlib any more. Only the static linked library is copied to the staging directory so we have a statically linked library on all systems and not only on Linux. This also adds the new dependencies of the packages which are depending on zlib. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> Tested-by: Koen Vandeputte <koen.vandeputte@ncentric.com>
* treewide: clean up download hashesFelix Fietkau2016-12-161-1/+1
| | | | | | Replace *MD5SUM with *HASH, replace MD5 hashes with SHA256 Signed-off-by: Felix Fietkau <nbd@nbd.name>
* tools/lzma-old fix compile issues (patch from #10253)Felix Fietkau2011-10-211-4/+4
| | | | SVN-Revision: 28502
* lzma-old: do not install $(STAGING_DIR_HOST)/bin/lzmaFelix Fietkau2011-04-031-4/+1
| | | | SVN-Revision: 26423
* set PKG_NAME of the old lzma package to lzma-old to fix conflicts with the ↵Felix Fietkau2009-05-231-3/+3
| | | | | | new lzma package SVN-Revision: 16014
* rename tools/lzma to tools/lzma-old (preparation for adding a new lzma version)Felix Fietkau2009-05-043-0/+453
SVN-Revision: 15595
#22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
entity repro7 is
end repro7;

architecture behav of repro7 is
  type my_rec is record
    a : bit;
    w : bit_vector;
  end record;

  procedure check (signal v : my_rec) is
  begin
    assert v.a = '0' and v.w = "01";
  end check;

  procedure pack (signal a : bit; signal w : bit_vector) is
  begin
    check (v.a => a,
           v.w => w);
  end pack;

  signal sa : bit;
  signal sw : bit_vector (1 to 2);
begin
  process
  begin
    sa <= '0';
    sw <= "01";
    wait for 0 ns;
    pack (sa, sw);
    wait;
  end process;
end;