Fix llvm-config path

This commit is contained in:
Jeremy Soller 2017-11-10 12:16:13 -07:00
parent 58ff0bf936
commit 8de4e0f20e

View File

@ -4,7 +4,7 @@ import sys
import os
args = sys.argv[1:]
prefix = os.path.realpath(os.path.dirname(os.path.dirname(os.path.abspath(sys.argv[0]))) + "/llvm-prefix")
prefix = os.path.realpath(os.path.dirname(os.path.abspath(sys.argv[0])) + "/llvm-prefix")
# The values here are copied from the output of llvm-config running under Redox.
# This is a hack, and should be replaced if possible.