Skip to content
This repository has been archived by the owner on Sep 29, 2022. It is now read-only.

Commit

Permalink
Icu: Build it with gcc 4.4 on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
ccordoba12 committed Nov 19, 2015
1 parent ac9df36 commit 17e7873
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 5 additions & 3 deletions icu/build.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
#!/bin/bash

cd source
chmod +x runConfigureICU configure install-sh
chmod +x configure install-sh

if [ "$(uname)" == "Linux" ]; then
./runConfigureICU Linux --prefix="$PREFIX"
export CC=gcc44
export CXX=g++44

./configure --prefix="$PREFIX"
fi

if [ "$(uname)" == "Darwin" ]; then
Expand All @@ -21,4 +24,3 @@ fi

make
make install

1 change: 0 additions & 1 deletion icu/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,3 @@ source:
about:
home: http://site.icu-project.org/
license: MIT

0 comments on commit 17e7873

Please sign in to comment.