dtorkin

Untitled

Apr 21st, 2025
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.67 KB | None | 0 0
  1. dtorkin@ubuntu1:~/Desktop/practice$ make
  2. Compiling svm/svm_main.c...
  3. gcc -Wall -Wextra -g -Iprotocol -Iio -Isvm -Iuvm -Iconfig -Iutils -pthread -c -o svm/svm_main.o svm/svm_main.c
  4. Compiling svm/svm_handlers.c...
  5. gcc -Wall -Wextra -g -Iprotocol -Iio -Isvm -Iuvm -Iconfig -Iutils -pthread -c -o svm/svm_handlers.o svm/svm_handlers.c
  6. Compiling svm/svm_timers.c...
  7. gcc -Wall -Wextra -g -Iprotocol -Iio -Isvm -Iuvm -Iconfig -Iutils -pthread -c -o svm/svm_timers.o svm/svm_timers.c
  8. Compiling svm/svm_receiver.c...
  9. gcc -Wall -Wextra -g -Iprotocol -Iio -Isvm -Iuvm -Iconfig -Iutils -pthread -c -o svm/svm_receiver.o svm/svm_receiver.c
  10. Compiling svm/svm_processor.c...
  11. gcc -Wall -Wextra -g -Iprotocol -Iio -Isvm -Iuvm -Iconfig -Iutils -pthread -c -o svm/svm_processor.o svm/svm_processor.c
  12. Compiling svm/svm_sender.c...
  13. gcc -Wall -Wextra -g -Iprotocol -Iio -Isvm -Iuvm -Iconfig -Iutils -pthread -c -o svm/svm_sender.o svm/svm_sender.c
  14. Compiling protocol/message_utils.c...
  15. gcc -Wall -Wextra -g -Iprotocol -Iio -Isvm -Iuvm -Iconfig -Iutils -pthread -c -o protocol/message_utils.o protocol/message_utils.c
  16. Compiling protocol/message_builder.c...
  17. gcc -Wall -Wextra -g -Iprotocol -Iio -Isvm -Iuvm -Iconfig -Iutils -pthread -c -o protocol/message_builder.o protocol/message_builder.c
  18. protocol/message_builder.c: In function ‘create_init_channel_message’:
  19. protocol/message_builder.c:45:52: warning: unused parameter ‘uvm_address’ [-Wunused-parameter]
  20. 45 | Message create_init_channel_message(LogicalAddress uvm_address, LogicalAddress svm_address, uint16_t message_num) {
  21. | ~~~~~~~~~~~~~~~^~~~~~~~~~~
  22. Compiling io/io_common.c...
  23. gcc -Wall -Wextra -g -Iprotocol -Iio -Isvm -Iuvm -Iconfig -Iutils -pthread -c -o io/io_common.o io/io_common.c
  24. Compiling io/io_ethernet.c...
  25. gcc -Wall -Wextra -g -Iprotocol -Iio -Isvm -Iuvm -Iconfig -Iutils -pthread -c -o io/io_ethernet.o io/io_ethernet.c
  26. Compiling io/io_serial.c...
  27. gcc -Wall -Wextra -g -Iprotocol -Iio -Isvm -Iuvm -Iconfig -Iutils -pthread -c -o io/io_serial.o io/io_serial.c
  28. Compiling config/config.c...
  29. gcc -Wall -Wextra -g -Iprotocol -Iio -Isvm -Iuvm -Iconfig -Iutils -pthread -c -o config/config.o config/config.c
  30. config/config.c: In function ‘load_config’:
  31. config/config.c:115:84: warning: comparison is always false due to limited range of data type [-Wtype-limits]
  32. 115 | onfig->svm_ethernet[i].port == 0 || config->svm_ethernet[i].port > 65535) {
  33. | ^
  34.  
  35. Compiling config/ini.c...
  36. gcc -Wall -Wextra -g -Iprotocol -Iio -Isvm -Iuvm -Iconfig -Iutils -pthread -c -o config/ini.o config/ini.c
  37. Compiling utils/ts_queue.c...
  38. gcc -Wall -Wextra -g -Iprotocol -Iio -Isvm -Iuvm -Iconfig -Iutils -pthread -c -o utils/ts_queue.o utils/ts_queue.c
  39. Compiling utils/ts_queue_req.c...
  40. gcc -Wall -Wextra -g -Iprotocol -Iio -Isvm -Iuvm -Iconfig -Iutils -pthread -c -o utils/ts_queue_req.o utils/ts_queue_req.c
  41. Compiling utils/ts_queued_msg_queue.c...
  42. gcc -Wall -Wextra -g -Iprotocol -Iio -Isvm -Iuvm -Iconfig -Iutils -pthread -c -o utils/ts_queued_msg_queue.o utils/ts_queued_msg_queue.c
  43. Compiling utils/ts_uvm_resp_queue.c...
  44. gcc -Wall -Wextra -g -Iprotocol -Iio -Isvm -Iuvm -Iconfig -Iutils -pthread -c -o utils/ts_uvm_resp_queue.o utils/ts_uvm_resp_queue.c
  45. Linking svm_app...
  46. gcc -Wall -Wextra -g -Iprotocol -Iio -Isvm -Iuvm -Iconfig -Iutils -pthread svm/svm_main.o svm/svm_handlers.o svm/svm_timers.o svm/svm_receiver.o svm/svm_processor.o svm/svm_sender.o protocol/message_utils.o protocol/message_builder.o io/io_common.o io/io_ethernet.o io/io_serial.o config/config.o config/ini.o utils/ts_queue.o utils/ts_queue_req.o utils/ts_queued_msg_queue.o utils/ts_uvm_resp_queue.o -o svm_app -pthread -lrt
  47. SVM application (svm_app) built successfully.
  48. Compiling uvm/uvm_main.c...
  49. gcc -Wall -Wextra -g -Iprotocol -Iio -Isvm -Iuvm -Iconfig -Iutils -pthread -c -o uvm/uvm_main.o uvm/uvm_main.c
  50. uvm/uvm_main.c: In function ‘main’:
  51. uvm/uvm_main.c:90:26: warning: unused parameter ‘argv’ [-Wunused-parameter]
  52. 90 | int main(int argc, char *argv[]) {
  53. | ~~~~~~^~~~~~
  54. Compiling uvm/uvm_sender.c...
  55. gcc -Wall -Wextra -g -Iprotocol -Iio -Isvm -Iuvm -Iconfig -Iutils -pthread -c -o uvm/uvm_sender.o uvm/uvm_sender.c
  56. Compiling uvm/uvm_receiver.c...
  57. gcc -Wall -Wextra -g -Iprotocol -Iio -Isvm -Iuvm -Iconfig -Iutils -pthread -c -o uvm/uvm_receiver.o uvm/uvm_receiver.c
  58. Compiling uvm/uvm_utils.c...
  59. gcc -Wall -Wextra -g -Iprotocol -Iio -Isvm -Iuvm -Iconfig -Iutils -pthread -c -o uvm/uvm_utils.o uvm/uvm_utils.c
  60. Linking uvm_app...
  61. gcc -Wall -Wextra -g -Iprotocol -Iio -Isvm -Iuvm -Iconfig -Iutils -pthread uvm/uvm_main.o uvm/uvm_sender.o uvm/uvm_receiver.o uvm/uvm_utils.o protocol/message_utils.o protocol/message_builder.o io/io_common.o io/io_ethernet.o io/io_serial.o config/config.o config/ini.o utils/ts_queue.o utils/ts_queue_req.o utils/ts_queued_msg_queue.o utils/ts_uvm_resp_queue.o -o uvm_app -pthread -lrt
  62. UVM application (uvm_app) built successfully.
  63. dtorkin@ubuntu1:~/Desktop/practice$ sudo ./uvm_app
  64. UVM: Загрузка конфигурации...
  65. Configuration parsed successfully from 'config.ini'.
  66. Found configurations for 4 SVM instances.
  67. UVM: Found 4 SVM configurations in config file.
  68. Thread-safe UVM request queue created with capacity 50
  69. Thread-safe UVM Response queue created with capacity 200
  70. UVM: Connecting to SVMs...
  71. UVM: Attempting to connect to SVM ID 0 (IP: 127.0.0.1, Port: 8080)...
  72. DEBUG UVM: Preparing to create interface for SVM 0 with IP=127.0.0.1, Port=8080
  73. ethernet_connect: Connection failed: Connection refused
  74. UVM: Failed to connect to SVM ID 0 (IP: 127.0.0.1, Port: 8080).
  75. Ethernet Interface destroyed.
  76. UVM: Attempting to connect to SVM ID 1 (IP: 127.0.0.1, Port: 8081)...
  77. DEBUG UVM: Preparing to create interface for SVM 1 with IP=127.0.0.1, Port=8081
  78. ethernet_connect: Connection failed: Connection refused
  79. UVM: Failed to connect to SVM ID 1 (IP: 127.0.0.1, Port: 8081).
  80. Ethernet Interface destroyed.
  81. UVM: Attempting to connect to SVM ID 2 (IP: 127.0.0.1, Port: 8082)...
  82. DEBUG UVM: Preparing to create interface for SVM 2 with IP=127.0.0.1, Port=8082
  83. ethernet_connect: Connection failed: Connection refused
  84. UVM: Failed to connect to SVM ID 2 (IP: 127.0.0.1, Port: 8082).
  85. Ethernet Interface destroyed.
  86. UVM: Attempting to connect to SVM ID 3 (IP: 127.0.0.1, Port: 8083)...
  87. DEBUG UVM: Preparing to create interface for SVM 3 with IP=127.0.0.1, Port=8083
  88. ethernet_connect: Connection failed: Connection refused
  89. UVM: Failed to connect to SVM ID 3 (IP: 127.0.0.1, Port: 8083).
  90. Ethernet Interface destroyed.
  91. Thread-safe UVM request queue destroyed
  92. Thread-safe UVM Response queue destroyed
  93. UVM: Очистка завершена.
  94.  
Advertisement
Add Comment
Please, Sign In to add comment