vala: Support position-independent executables

This commit is contained in:
Corentin Noël 2019-02-04 13:49:01 +01:00 committed by Nirbheek Chauhan
parent da7b9df16c
commit 08757dcdfd
1 changed files with 6 additions and 0 deletions

View File

@ -49,6 +49,12 @@ class ValaCompiler(Compiler):
def get_pic_args(self):
return []
def get_pie_args(self):
return []
def get_pie_link_args(self):
return []
def get_always_args(self):
return ['-C']