forked from MoSync/gcc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfigure-darwin.sh
executable file
·54 lines (42 loc) · 2.22 KB
/
configure-darwin.sh
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
#!/bin/sh
#---------------------------------------------------------------------------------
# Source and Install directories
#---------------------------------------------------------------------------------
SRCDIR=$PWD/gcc-3.4.6 # the sourcecode dir for gcc
# This must be specified in the format shown here
# as one of the tools built during the process will fail
# if absolute paths are specified
# the example here assumes that the gcc source directory
# is at the same level as the script
prefix=/usr/mosync # installation directory
# This must be specified in the format shown here
# or gcc won't be able to find it's libraries and includes
# if you move the installation
builddir=./build/gcc
#---------------------------------------------------------------------------------
# set the path for the installed binutils
#---------------------------------------------------------------------------------
#export PATH=${PATH}:/c/cross-gcc/mosync/bin
#---------------------------------------------------------------------------------
# set the target and compiler flags
#---------------------------------------------------------------------------------
target=mapip
progpref=mapip-
export CFLAGS='-O2 -pipe -m32'
export CXXFLAGS='-O2 -pipe'
export LDFLAGS='-s'
export DEBUG_FLAGS=''
#---------------------------------------------------------------------------------
# build and install just the c compiler
#---------------------------------------------------------------------------------
mkdir -p $builddir
cd $builddir
$SRCDIR/configure \
--enable-languages=c,c++ \
--with-gcc --with-stabs \
--disable-shared --disable-threads --disable-win32-registry --disable-nls \
--prefix=$prefix \
--target=$target \
--without-headers \
--program-prefix=$progpref -v \
2>&1 | tee gcc_configure.log