yum -y groupinstall "Development Tools"
yum -y install gcc openssl-devel bzip2-devel libffi-devel
yum install epel-release
| #include <iostream> | |
| #include <sstream> | |
| #include <string> | |
| #include <tcl.h> | |
| // Helper to extract a string value from a Tcl dict | |
| static std::string GetDictString(Tcl_Interp* interp, Tcl_Obj* dict, const char* key) | |
| { | |
| Tcl_Obj* keyObj = Tcl_NewStringObj(key, -1); | |
| Tcl_Obj* value = nullptr; |