Does anyone know how to recompile the TCL language to allow larger than 2147483647 Integer Sizes? I am looking to be able to set an Int to a 4 byte word (max value 4294967295).
Here is what I have found:
proc unsigned var {
uplevel trace var $var w "{set var \[format %u \$$var\];#}"
};#unsigned
This procedure will allow the setting of larger values to a variable, but this value will NOT work in conjunction with the incr command. Any thoughts?:
Here is what I have found:
proc unsigned var {
uplevel trace var $var w "{set var \[format %u \$$var\];#}"
};#unsigned
This procedure will allow the setting of larger values to a variable, but this value will NOT work in conjunction with the incr command. Any thoughts?: