mirror of
https://github.com/chipsalliance/f4pga.git
synced 2025-01-03 03:43:37 -05:00
22 lines
293 B
Text
22 lines
293 B
Text
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
case "$1" in
|
||
|
bin)
|
||
|
(
|
||
|
cd $(dirname "$0")
|
||
|
pwd
|
||
|
)
|
||
|
;;
|
||
|
share)
|
||
|
(
|
||
|
case "$F4PGA_FAM" in
|
||
|
xc7) cd $(dirname "$0")/../share/symbiflow;;
|
||
|
eos-s3) cd $(dirname "$0")/../share;;
|
||
|
esac
|
||
|
pwd
|
||
|
)
|
||
|
;;
|
||
|
esac
|