mirror of
https://github.com/chipsalliance/f4pga.git
synced 2025-01-03 03:43:37 -05:00
80748d7516
Signed-off-by: Unai Martinez-Corral <umartinezcorral@antmicro.com>
21 lines
293 B
Bash
Executable file
21 lines
293 B
Bash
Executable file
#!/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
|