summaryrefslogtreecommitdiff
path: root/src/compiler/Makefile.sources
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2018-10-23 16:01:12 -0700
committerMatt Turner <mattst88@gmail.com>2019-01-09 16:42:40 -0800
commit412472da5cb30b603e218b34893936cc70039ded (patch)
tree52ae5402c08455560e9dd6e2dc7e2b62e4d30395 /src/compiler/Makefile.sources
parent76c27e47b90647df047e785d6b3ab5d0d979a1ee (diff)
glsl: Add utility to convert text files to C strings
Will be used to convert the .glsl source file containing software fp64 routines to a .h file that can be included while building the compiler. This commit contains two squashed together: the first from Ian adding the utility (with the existing title), and the second from Dylan making the code both python2 and python3 compatible. This is somewhat modeled after the xxd utility that comes with Vim. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> xxd.py: Make python2 and 3 compatible This makes use of unicode_literals, so that undecorated strings are considered text (python2 unicode, python3 str) and not bytes in python2 and text in python3. It makes use of io.open, which provides python2 with python3's open behavior (it's an alias in python3), in particular support for the 't' and 'b' option. Finally, it decorates all of the string literals with the 'b' prefix, so that python interprets them as bytes. I've removed the stdin and stdout options, as python2 always requires these to be bytes, but python3 always treats them as text (there is a way to get at the underlying bytes buffer, but that's even more complexity), and makes the input files required arguments. In the meson we use the '@INPUT@' shorthand instead of listing each input, as meson will expand that to [prog_python, '@INPUT0@', @INPUT1@, ..., @OUTPUT@, ...]
Diffstat (limited to 'src/compiler/Makefile.sources')
0 files changed, 0 insertions, 0 deletions