mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-12-02 19:24:12 +01:00
9220835171
GCC produces a lot of warnings about ignored dllimport/dllexport attributes. Detecting real problems from build output will be easier with this warnings turned off. `man winegcc` > The dllimport/dllexport attributes are not supported at the moment, > due to lack of support for these features in the ELF version of gcc. `man gcc` > -Wno-attributes > Do not warn if an unexpected "__attribute__" is used, > such as unrecognized attributes, function attributes applied to variables, etc. > This does not stop errors for incorrect use of supported attributes.
20 lines
294 B
Plaintext
20 lines
294 B
Plaintext
[binaries]
|
|
c = 'winegcc'
|
|
cpp = 'wineg++'
|
|
ar = 'ar'
|
|
strip = 'strip'
|
|
|
|
[properties]
|
|
winelib = true
|
|
|
|
c_args=['-m64']
|
|
cpp_args=['-m64', '--no-gnu-unique', '-Wno-attributes']
|
|
cpp_link_args=['-m64', '-mwindows']
|
|
|
|
[host_machine]
|
|
system = 'linux'
|
|
cpu_family = 'x86_64'
|
|
cpu = 'x86_64'
|
|
endian = 'little'
|
|
|