I have resolved the issue. It was an layer 8 (usage) issue from me.
The libraries linking arguments must be after the sources with GCC/G++
of course, not before:
$ g++ -o vkExtension vkExtension.cpp -lvulkan
Totally forgotten this behavior from GCC/G++
. Sorry, to other SO users for wasting your time.