Forum Discussion

Altera_Forum's avatar
Altera_Forum
Icon for Honored Contributor rankHonored Contributor
15 years ago

Error: quartus_map ended unexpectedly

Hi there,

I'm running Quartus II 10sp1 on ArchLinux. . When I'm trying to compile

LIBRARY IEEE;
USE IEEE.STD_LOGIC_1164.ALL;
ENTITY my_and2 is
	PORT(A, B: IN STD_LOGIC;
		  C: OUT STD_LOGIC);
END my_and2;
ARCHITECTURE behav of my_and2 IS
BEGIN
			PROCESS(A, B)
			BEGIN				
				C <= A AND B;
			END PROCESS;
END behav;

I've got this error

--- Quote Start ---

Error: Current module quartus_map ended unexpectedly

--- Quote End ---

Here is full log

--- Quote Start ---

Info: *******************************************************************

Info: Running Quartus II Analysis & Synthesis

Info: Version 10.0 Build 262 08/18/2010 Service Pack 1 SJ Web Edition

Info: Processing started: Tue Sep 21 18:00:11 2010

Info: Version 10.0 Build 262 08/18/2010 Service Pack 1 SJ Web Edition

Info: Processing started: Tue Sep 21 18:00:11 2010

Info: Command: quartus_map --read_settings_files=on --write_settings_files=off my_and2 -c my_and2

Info: Found 2 design units, including 1 entities, in source file my_and2.vhd

Info: Found design unit 1: my_and2-behav

Info: Found entity 1: my_and2

Info: Found design unit 1: my_and2-behav

Info: Found entity 1: my_and2

Info: Elaborating entity "my_and2" for the top level hierarchy

Error: Current module quartus_map ended unexpectedly

--- Quote End ---

Do you have any suggestions how to fix this error?

11 Replies

  • Altera_Forum's avatar
    Altera_Forum
    Icon for Honored Contributor rankHonored Contributor

    Causes problems in Quartus 11 as well, when using SOPC_BUILDER or QSYS to add custom components. The error messages will complain about missing TOP_LEVEL_MODULE or multiple modules when actual quartus_map writes /etc/issue into the PLATFORM tag in a temporary xml file. When the next stage parses the xml to create the interface it barfs on the screen clear commands.