ldd -> dependencies

This commit is contained in:
MultiMote 2023-01-14 21:29:07 +03:00
parent 965ddfa1b5
commit 49f3f362d6
3 changed files with 2 additions and 7 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

View File

@ -151,15 +151,10 @@ g++ main.cpp -o main.exe -O2 -DWIN32 -static -lfltk -lole32 -luuid -lcomctl32 -m
**-lfltk -lole32 -luuid -lcomctl32** подключение необходимых библиотек.
Никакого вывода команда не выдаёт.
Проверяем, что наше приложение не требует никаких дополнительных библиотек.
```bash
ldd main.exe
```
Проверяем, что наше приложение не требует никаких дополнительных библиотек с помощью [Dependencies](https://github.com/lucasg/Dependencies).
Ничего кроме системных путей тут быть не должно:
![ldd](ldd.png)
![depends](depends.png)
После этого можно запускать приложение.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB