mirror of
https://github.com/thiagoralves/OpenPLC_v3.git
synced 2026-08-19 03:52:52 +08:00
New flags added support for: - use of forward references - relaxed datatype equivalence model - use of references (REF_TO, REF, ^, NULL) - use of REF_TO ANY datatypes as well as REF_TO in ARRAYs and STRUCTs - use of non-literals in array size limits
121 lines
3.8 KiB
Bash
Executable File
121 lines
3.8 KiB
Bash
Executable File
#!/bin/bash
|
|
if [ $# -eq 0 ]; then
|
|
echo "Error: You must provide a file to be compiled as argument"
|
|
exit 1
|
|
fi
|
|
|
|
#move into the scripts folder if you're not there already
|
|
cd scripts &>/dev/null
|
|
|
|
OPENPLC_PLATFORM=$(cat openplc_platform)
|
|
|
|
#store the active program filename
|
|
echo "$1" > ../active_program
|
|
|
|
#compiling the ST file into C
|
|
cd ..
|
|
echo "Optimizing ST program..."
|
|
./st_optimizer ./st_files/"$1" ./st_files/"$1"
|
|
echo "Generating C files..."
|
|
./iec2c -f -l -p -r -R -a ./st_files/"$1"
|
|
if [ $? -ne 0 ]; then
|
|
echo "Error generating C files"
|
|
echo "Compilation finished with errors!"
|
|
exit 1
|
|
fi
|
|
echo "Moving Files..."
|
|
mv -f POUS.c POUS.h LOCATED_VARIABLES.h VARIABLES.csv Config0.c Config0.h Res0.c ./core/
|
|
if [ $? -ne 0 ]; then
|
|
echo "Error moving files"
|
|
echo "Compilation finished with errors!"
|
|
exit 1
|
|
fi
|
|
|
|
#compiling for each platform
|
|
cd core
|
|
if [ "$OPENPLC_PLATFORM" = "win" ]; then
|
|
echo "Compiling for Windows"
|
|
echo "Generating object files..."
|
|
g++ -I ./lib -c Config0.c -w
|
|
if [ $? -ne 0 ]; then
|
|
echo "Error compiling C files"
|
|
echo "Compilation finished with errors!"
|
|
exit 1
|
|
fi
|
|
g++ -I ./lib -c Res0.c -w
|
|
if [ $? -ne 0 ]; then
|
|
echo "Error compiling C files"
|
|
echo "Compilation finished with errors!"
|
|
exit 1
|
|
fi
|
|
echo "Generating glueVars..."
|
|
./glue_generator
|
|
echo "Compiling main program..."
|
|
g++ *.cpp *.o -o openplc -I ./lib -pthread -fpermissive -I /usr/local/include/modbus -L /usr/local/lib -lmodbus -w
|
|
if [ $? -ne 0 ]; then
|
|
echo "Error compiling C files"
|
|
echo "Compilation finished with errors!"
|
|
exit 1
|
|
fi
|
|
echo "Compilation finished successfully!"
|
|
exit 0
|
|
|
|
elif [ "$OPENPLC_PLATFORM" = "linux" ]; then
|
|
echo "Compiling for Linux"
|
|
echo "Generating object files..."
|
|
g++ -std=gnu++11 -I ./lib -c Config0.c -lasiodnp3 -lasiopal -lopendnp3 -lopenpal -w
|
|
if [ $? -ne 0 ]; then
|
|
echo "Error compiling C files"
|
|
echo "Compilation finished with errors!"
|
|
exit 1
|
|
fi
|
|
g++ -std=gnu++11 -I ./lib -c Res0.c -lasiodnp3 -lasiopal -lopendnp3 -lopenpal -w
|
|
if [ $? -ne 0 ]; then
|
|
echo "Error compiling C files"
|
|
echo "Compilation finished with errors!"
|
|
exit 1
|
|
fi
|
|
echo "Generating glueVars..."
|
|
./glue_generator
|
|
echo "Compiling main program..."
|
|
g++ -std=gnu++11 *.cpp *.o -o openplc -I ./lib -pthread -fpermissive `pkg-config --cflags --libs libmodbus` -lasiodnp3 -lasiopal -lopendnp3 -lopenpal -w
|
|
if [ $? -ne 0 ]; then
|
|
echo "Error compiling C files"
|
|
echo "Compilation finished with errors!"
|
|
exit 1
|
|
fi
|
|
echo "Compilation finished successfully!"
|
|
exit 0
|
|
|
|
elif [ "$OPENPLC_PLATFORM" = "rpi" ]; then
|
|
echo "Compiling for Raspberry Pi"
|
|
echo "Generating object files..."
|
|
g++ -std=gnu++11 -I ./lib -c Config0.c -lasiodnp3 -lasiopal -lopendnp3 -lopenpal -w
|
|
if [ $? -ne 0 ]; then
|
|
echo "Error compiling C files"
|
|
echo "Compilation finished with errors!"
|
|
exit 1
|
|
fi
|
|
g++ -std=gnu++11 -I ./lib -c Res0.c -lasiodnp3 -lasiopal -lopendnp3 -lopenpal -w
|
|
if [ $? -ne 0 ]; then
|
|
echo "Error compiling C files"
|
|
echo "Compilation finished with errors!"
|
|
exit 1
|
|
fi
|
|
echo "Generating glueVars..."
|
|
./glue_generator
|
|
echo "Compiling main program..."
|
|
g++ -std=gnu++11 *.cpp *.o -o openplc -I ./lib -lrt -lwiringPi -lpthread -fpermissive `pkg-config --cflags --libs libmodbus` -lasiodnp3 -lasiopal -lopendnp3 -lopenpal -w
|
|
if [ $? -ne 0 ]; then
|
|
echo "Error compiling C files"
|
|
echo "Compilation finished with errors!"
|
|
exit 1
|
|
fi
|
|
echo "Compilation finished successfully!"
|
|
exit 0
|
|
else
|
|
echo "Error: Undefined platform! OpenPLC can only compile for Windows, Linux and Raspberry Pi environments"
|
|
echo "Compilation finished with errors!"
|
|
exit 1
|
|
fi
|