mariuz / flamerobin

FlameRobin is a database administration tool for Firebird RDBMS. Our goal is to build a tool that is: lightweight (small footprint, fast execution) cross-platform (Linux, Windows, Mac OS X, FreeBSD) dependent only on other Open Source software
http://flamerobin.org
MIT License
216 stars 67 forks source link

Question: Installing in El Captain #2

Closed typevitor closed 4 years ago

typevitor commented 8 years ago

Hi. I Have a mac with OS el captain and it does not seen to be possible installing flamerobin. I tried with the dmg file (0.9.2) in the download section on the web-site

I need to do something do make it work?

Tomas2D commented 8 years ago

You have to compile your own version of Flamerobin.

Steps below should help you :-)

How to compile Flamerobin on Mac OS X 10.11

// Before we can get into compiling

brew install boost
brew install autoconf

// Configuration command

// Final configuration ../configure --disable-debug --disable-dependency-tracking CFLAGS="-stdlib=libstdc++ -mmacosx-version-min=10.11 -isysroot /Developer/SDKs/MacOSX10.11.sdk" LDFLAGS="-stdlib=libstdc++ -Wl,-syslibroot,/Developer/SDKs/MacOSX10.11.sdk -Wl,-macosx_version_min -Wl,10.11" CXXFLAGS="-stdlib=libstdc++ -mmacosx-version-min=10.11 -isysroot /Developer/SDKs/MacOSX10.11.sdk" --with-wx-config=/opt/wxwidget3/bin/wx-config

// After configuration make

Tested on MAC OS X 10.11

mariuz commented 4 years ago

Updated instructions to build here https://github.com/mariuz/flamerobin/blob/master/BUILD.txt#L182