public
Description: The Nu programming language.
Homepage: http://programming.nu
Clone URL: git://github.com/timburks/nu.git
Fix the INSTALL file to work on x86 architecture
ijt (author)
Mon Jun 30 01:35:47 -0700 2008
commit  979fb73a78090f2b9d16f1ad3ec612d388100659
tree    e3a58797bb74f524caad92970acad93deec12d6b
parent  630d4cee63f28f5c81fc674a13b4638b7a8e6db7
...
7
8
9
10
 
 
11
12
 
 
 
 
 
 
 
 
13
14
15
...
7
8
9
 
10
11
12
 
13
14
15
16
17
18
19
20
21
22
23
0
@@ -7,9 +7,17 @@ BUILD THE PREREQUISITES
0
 1. Nu requires PCRE, the Perl-Compatible Regular Expression Library.
0
    Before building Nu, download and install pcre, enabling UTF-8.
0
    Look for it at http://www.pcre.org.
0
- To build a universal binary with UTF-8 support, use the following command:
0
+ To build and install a universal binary with UTF-8 support, use the
0
+ following commands:
0
 
0
-% env CXXFLAGS="-arch i386 -arch ppc" CFLAGS="-arch i386 -arch ppc" LDFLAGS="-arch i386 -arch ppc" ./configure --disable-dependency-tracking --enable-utf8
0
+ % env CXXFLAGS="-arch i386 -arch ppc -arch x86_64" \
0
+ CFLAGS="-arch i386 -arch ppc -arch x86_64" \
0
+ LDFLAGS="-arch i386 -arch ppc -arch x86_64" \
0
+ ./configure --disable-dependency-tracking --enable-utf8
0
+
0
+ % make
0
+
0
+ % sudo make install
0
 
0
    When you install PCRE, it's best to put it in /usr/local (the default).
0
    If you put it anywhere else, you'll have to modify the Rakefile and Nukefile

Comments

    No one has commented yet.