mirror of https://github.com/openXC7/prjxray.git
Add FASM library to prjxray path.
Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
This commit is contained in:
parent
c5c4a2dfd8
commit
3edbde3fe2
|
|
@ -13,3 +13,6 @@
|
|||
[submodule "third_party/yaml-cpp"]
|
||||
path = third_party/yaml-cpp
|
||||
url = https://github.com/jbeder/yaml-cpp.git
|
||||
[submodule "third_party/fasm"]
|
||||
path = third_party/fasm
|
||||
url = https://github.com/SymbiFlow/fasm.git
|
||||
|
|
|
|||
|
|
@ -0,0 +1 @@
|
|||
Subproject commit faed2f5e9915497c3774ec201ced8dc017cc03ae
|
||||
|
|
@ -4,7 +4,7 @@ while [ -h "$XRAY_ENV_PATH" ]; do # resolve $XRAY_ENV_PATH until the file is no
|
|||
XRAY_ENV_PATH="$(readlink "$XRAY_ENV_PATH")"
|
||||
[[ $XRAY_ENV_PATH != /* ]] && XRAY_ENV_PATH="$XRAY_UTILS_DIR/$XRAY_ENV_PATH" # if $XRAY_ENV_PATH was a relative symlink, we need to resolve it relative to the path where the symlink file was located
|
||||
done
|
||||
export PYTHONPATH="${XRAY_DIR}:$PYTHONPATH"
|
||||
export PYTHONPATH="${XRAY_DIR}:${XRAY_DIR}/third_party/fasm:$PYTHONPATH"
|
||||
export XRAY_UTILS_DIR="$( cd -P "$( dirname "$XRAY_ENV_PATH" )" && pwd )"
|
||||
|
||||
export XRAY_DIR="$( dirname "$XRAY_UTILS_DIR" )"
|
||||
|
|
|
|||
Loading…
Reference in New Issue