1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-03 05:21:20 +00:00
QB64-PE/tests/compile_tests/declare_library_static
github-actions[bot] 72d801e0cd Fix linking static libraries on Windows
In QB64, when linking with an external static library `nm.exe` is used
to determine whether the symbol being used is either a C or C++ symbol,
which determines how the function should be declared in the C++ code.

Unfortunately on Windows the `SHELL` command for `nm.exe` is missing the
`cmd /c`, which means the redirection does not work and consequently
we're unable to find the function declaration via `nm.exe`, which causes
the compilation to fail.

In addition to fixing this, I added tests for `DECLARE STATIC LIBRARY`
for all supported platforms.

Fixes: #112
2022-07-09 14:59:33 -04:00
..
.gitignore Fix linking static libraries on Windows 2022-07-09 14:59:33 -04:00
lib-windows.a Fix linking static libraries on Windows 2022-07-09 14:59:33 -04:00
lib-windows32.a Fix linking static libraries on Windows 2022-07-09 14:59:33 -04:00
lib.c Fix linking static libraries on Windows 2022-07-09 14:59:33 -04:00
liblib-linux.a Fix linking static libraries on Windows 2022-07-09 14:59:33 -04:00
liblib-osx.a Fix linking static libraries on Windows 2022-07-09 14:59:33 -04:00
test.bas Fix linking static libraries on Windows 2022-07-09 14:59:33 -04:00
test.output Fix linking static libraries on Windows 2022-07-09 14:59:33 -04:00