Domanda

I'm trying to compile a 64-bit application using Waf, but the wscript is returning the error:

Source not found: None.

I have heard that this can be due to improper indentation or mixed character encodings, which my wscript does not have.

Any possible solutions/leads to what may be causing this?

È stato utile?

Soluzione

Found the error! Previously, for my sources I was using:

bld.path.find_resource(file_name) for file_name in

One of the file paths did not exist, so the resource became None. Since I was using absolute file paths, I solved by changing to:

file_name for file_name in
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top