Alex Maslov
Alex Maslov
I has one: ``` ruby namespace :private_pub do desc "Start private_pub server" task :start do run "cd #{current_path};RAILS_ENV=production bundle exec rackup private_pub.ru -s thin -E production -D -P tmp/pids/private_pub.pid" end...
@Overv my nasm version: ``` bash MineAssemble|master ⇒ nasm -v NASM version 0.98.40 (Apple Computer, Inc. build 11) compiled on Aug 4 2012 ```
With nasm from `brew`: ``` bash MineAssemble|master ⇒ /usr/local/Cellar/nasm/2.10.07/bin/nasm -v NASM version 2.10.07 compiled on Jun 18 2013 ``` ``` bash MineAssemble|master⚡ ⇒ make /usr/local/Cellar/nasm/2.10.07/bin/nasm -felf -o bin/init.o src/init.asm -isrc/...
Almost done: ``` bash MineAssemble|master⚡ ⇒ make gcc -m32 -c -g -o bin/reference.o src/reference.c -std=c99 -ffreestanding -O3 -ffast-math -nostdlib -nostdinc -fno-builtin -nostartfiles -nodefaultlibs -fno-exceptions -fno-stack-protector -static -fno-pic /usr/local/Cellar/nasm/2.10.07/bin/nasm -felf -o...
Another error... and `man ld` on mac os x doesn't include any reference to scriptfiles. ``` bash MineAssemble|master⚡ ⇒ make mkdir -p bin /usr/local/Cellar/nasm/2.10.07/bin/nasm -f macho -o bin/init.o src/init.asm -isrc/...
I'll try ld from the brew soon.
@Overv couldn't find `ld` in brew =/
I'm tried to compile it, but got the following error: ``` $ ./build.sh compiling (unix)... linking... Undefined symbols for architecture x86_64: "_OBJC_CLASS_$_NSUserDefaults", referenced from: objc-class-ref in src_platform_macos.m.o "___CFConstantStringClassReference", referenced from:...
And I found, that precompiled release have issues with retina support. You can see the low DPI fonts of lite at the right and high DPI fonts on the left...