|
Lines 9-15
Link Here
|
| 9 |
my $vhdl_source_name = ""; |
9 |
my $vhdl_source_name = ""; |
| 10 |
my $source = ""; |
10 |
my $source = ""; |
| 11 |
my $includes = ""; |
11 |
my $includes = ""; |
| 12 |
my $cpplibs = "-lm FREEHDL/lib/libfreehdl-kernel.la FREEHDL/lib/libfreehdl-std.la"; |
12 |
my $cpplibs = "-lm -lfreehdl-kernel -lfreehdl-std"; |
| 13 |
my $vhdl_library = ""; # Library the design entity is compiled into |
13 |
my $vhdl_library = ""; # Library the design entity is compiled into |
| 14 |
my $cpp_options = ""; |
14 |
my $cpp_options = ""; |
| 15 |
my $vhdl_options = ""; |
15 |
my $vhdl_options = ""; |
|
Lines 148-154
Link Here
|
| 148 |
} elsif ($argument =~ /^\--relaxed-component-visibility/) { |
148 |
} elsif ($argument =~ /^\--relaxed-component-visibility/) { |
| 149 |
$vhdl_options = $vhdl_options . " --relaxed-component-visibility"; |
149 |
$vhdl_options = $vhdl_options . " --relaxed-component-visibility"; |
| 150 |
} elsif ($argument =~ /^\--libieee/) { |
150 |
} elsif ($argument =~ /^\--libieee/) { |
| 151 |
$cpplibs .= " " . update ("FREEHDL/lib/freehdl/libieee.la"); |
151 |
# $cpplibs .= " " . update ("FREEHDL/lib/freehdl/libieee.la"); |
| 152 |
} elsif ($argument =~ /^\-/) { |
152 |
} elsif ($argument =~ /^\-/) { |
| 153 |
$cpp_options = $cpp_options . " " . $argument; |
153 |
$cpp_options = $cpp_options . " " . $argument; |
| 154 |
} else { |
154 |
} else { |