#!/bin/bash
CURRENT_DIR="$(pwd)"exportCONFIG_DIR="$CURRENT_DIR/iEDA_config"exportRESULT_DIR="$CURRENT_DIR/result/my_test_result"exportTCL_SCRIPT_DIR="$CURRENT_DIR/script"exportNETLIST_FILE="$CURRENT_DIR/result/verilog/gcd.v"exportFOUNDRY_DIR="$CURRENT_DIR/../../foundry/sky130"exportSPEF_FILE="$CURRENT_DIR/../../foundry/sky130/spef/gcd.spef"exportSDC_FILE="$CURRENT_DIR/../../foundry/sky130/sdc/gcd.sdc"exportDESIGN_TOP="gcd"exportDIE_AREA="0.0 0.0 149.96 150.128"exportCORE_AREA="9.996 10.08 139.964 140.048"echo"CONFIG_DIR set to: $CONFIG_DIR"echo"RESULT_DIR set to: $RESULT_DIR"echo"TCL_SCRIPT_DIR set to: $TCL_SCRIPT_DIR"echo"NETLIST_FILE set to: $NETLIST_FILE"echo"FOUNDRY_DIR set to: $FOUNDRY_DIR"echo"SPEF_FILE set to: $SPEF_FILE"echo"SDC_FILE set to: $SDC_FILE"echo"DESIGN_TOP set to: $DESIGN_TOP"echo"DIE_AREA set to: $DIE_AREA"echo"CORE_AREA set to: $CORE_AREA"