There is no licensing change between release 10.3 and 10.4.
However if you are migrating to 10.4 from a release like 10.2 and older, please note the following:
** Fatal: (SIGSEGV) Bad handle or reference.
bp 57
The "bp" command will also accept the common gdb syntax of "file-name:line-number", for example:
bp dut.sv:57
Here is the full usage description for the "bp" command:
# Usage:
# HDL breakpoints:
# bp location [options] [{command ...}]
# location: {[filename] line_number | filename:line_number | in task_or_fcn}
# options: [-id id#] [-label label] [-disable] [-uvm] [[-inst region]...]
# [-cond {condition_expression}] [-appendinst]
#
# C breakpoints:
# bp -c location [options]
# location: {function_name | line_number | filename:line_number | *0xhex_address}
# options: [-disable] [[-inst {systemc_module_instance_name}]...]
# [-cond {condition_expression}] [-appendinst]
#
# Information:
# bp [-query filename [line_number [line_number]]]
VSIM 1> run 105 VSIM 2> set PrefMain(noRunTimeMsg) 0 # 0 VSIM 3> run 112 # Time: @217 ns 0 VSIM 4> set PrefMain(noRunStatusMsg) 0 # 0 VSIM 5> run 100 # Time: @317 ns 0 # Status: ready end VSIM 6> set PrefMain(noRunTimeMsg) 1 # 1 VSIM 7> run 50 # Status: ready end VSIM 8> set PrefMain(noRunStatusMsg) 1 # 1 VSIM 9> run 55 VSIM 10>