blob: 64bd14c63aad65532c7bcc045a1c9beb213cd5ab (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
--- build.sh.orig 2014-02-24 05:44:13.000000000 +0900
+++ build.sh 2014-05-22 11:58:57.000000000 +0900
@@ -1,7 +1,7 @@
#!/bin/sh
EXEC_NAME=klayout
-OTHER_BIN=""
+OTHER_BIN="strm2gds strm2oas strm2txt strm2cif strm2dxf strmcmp strmclip strmxor"
CURR_DIR=`pwd`
PLATFORM="linux-32-gcc-release"
@@ -33,6 +33,9 @@
exit 1
fi
;;
+FreeBSD)
+ PLATFORM="freebsd-32-gcc-release"
+ ;;
*)
# Assume Linux for the remaining variants
case `arch` in
@@ -261,7 +264,7 @@
echo " 64 bit coordinates enabled"
fi
-gcc_path=`type gcc 2>/dev/null`
+gcc_path=`type $CC 2>/dev/null`
if [ "$gcc_path" = "" ]; then
echo "*** ERROR: unable to locate gcc in path"
exit 1
@@ -284,11 +287,11 @@
;;
esac
-if [ ! -r $QTBIN/moc ]; then
+if [ ! -r $QTBIN/moc-qt4 ]; then
echo "*** ERROR: unable to locate Qt MOC in $QTBIN"
exit 1
fi
-if [ ! -r $QTBIN/uic ]; then
+if [ ! -r $QTBIN/uic-qt4 ]; then
echo "*** ERROR: unable to locate Qt UIC in $QTBIN"
exit 1
fi
@@ -409,12 +412,12 @@
if [ $WIN_CYGWIN = 0 ]; then
echo ""
echo "Final binary is ready in $BIN/$EXEC_NAME."
- echo "To run it, you may need to add the following to your LD_LIBRARY_PATH:"
- echo "$QTLIB"
+ #echo "To run it, you may need to add the following to your LD_LIBRARY_PATH:"
+ #echo "$QTLIB"
- LD_LIBRARY_PATH=$QTLIB:$LD_LIBRARY_PATH
- $BIN/$EXEC_NAME -v
- $BIN/$EXEC_NAME -h
+ #LD_LIBRARY_PATH=$QTLIB:$LD_LIBRARY_PATH
+ #$BIN/$EXEC_NAME -v
+ #$BIN/$EXEC_NAME -h
fi
exit 0
|