diff options
| author | Aleksa Vuckovic <aleksa@vuckovic.cc> | 2025-02-08 21:55:46 +0100 |
|---|---|---|
| committer | Aleksa Vuckovic <aleksa@vuckovic.cc> | 2025-02-08 22:35:22 +0100 |
| commit | b66a3a497b3972aedd931370b851e9db79635b32 (patch) | |
| tree | 36e90c05d6093591afe3885b089d7f9932a8c93a /quartus.sh | |
Initial commit
Diffstat (limited to 'quartus.sh')
| -rw-r--r-- | quartus.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/quartus.sh b/quartus.sh new file mode 100644 index 0000000..7381528 --- /dev/null +++ b/quartus.sh @@ -0,0 +1,12 @@ +#!/bin/sh + +export PATH=$PATH:_alteradir/quartus/bin + +# Detect if a 64bit machine and activate quartus +# depending on it. +if [ `uname -m` = "x86_64" ] ; then + QUARTUS_64BIT='1' +else + QUARTUS_64BIT='0' +fi +export QUARTUS_64BIT
\ No newline at end of file |
