Estimated read time: 1 minutes
$fst_root/tools/checkpkgs -b -n|grep -v "\[X\] i686"|grep -v emul-nice ;)
Estimated read time: 1 minutes
$fst_root/tools/checkpkgs -b -n|grep -v "\[X\] i686"|grep -v emul-nice ;)
Estimated read time: 1 minutes
Estimated read time: 1 minutes
Estimated read time: 1 minutes
Estimated read time: 1 minutes
Estimated read time: 1 minutes
Estimated read time: 1 minutes
Estimated read time: 1 minutes
mingw packages arrived! namely:
mingw-binutils mingw-gcc mingw-runtime mingw-runtime-headers mingw-w32api mingw-w32api-headersarrived to devel-extra. a sample use of it:
$ cat Makefile CC = i386-mingw32msvc-gcc -O2 -Wall -mms-bitfields -mwindowsfoo.exe: foo.c $(CC) -o $@ $gt;
$ cat foo.c #includeint main(void) { printf("hey!\n"); return(0); }
$ make i386-mingw32msvc-gcc -O2 -Wall -mms-bitfields -mwindows -o foo.exe foo.c $ wine foo.exe hey!:)
update: a related article
Estimated read time: 1 minutes
finally i've got enough time to implement using fakeroot when building in chroot. a simple example about why this is good for us: select a pkg and put the
touch /etccommand to the end of build(). in chroot, this will run without any warning, and your chroot will be messed up. with the current fakeroot method:
touch: cannot touch `/etc/foo': Permission denied ==> ERROR: Build Failed. Aborting...
yes, that's what we wanted! :)
Estimated read time: 1 minutes