Skip to content

Commit

Permalink
Fixed some minor OSX build issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
shumatech committed May 22, 2017
1 parent 64f5d5e commit 3be622c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ endif
#
ifeq ($(OS),Darwin)
COMMON_SRCS+=PosixSerialPort.cpp OSXPortFactory.cpp
COMMON_CXXFLAGS=-arch i386 -arch x86_64 -mmacosx-version-min=10.5
COMMON_LDFLAGS=-arch i386 -arch x86_64 -mmacosx-version-min=10.5
COMMON_CXXFLAGS=-arch x86_64 -mmacosx-version-min=10.9
COMMON_LDFLAGS=-arch x86_64 -mmacosx-version-min=10.9
APP=BOSSA.app
DMG=bossa-$(VERSION).dmg
VOLUME=BOSSA
Expand Down
2 changes: 1 addition & 1 deletion install/dmgwin.osa
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ tell application "Finder"
set current view of container window to icon view
set toolbar visible of container window to false
set statusbar visible of container window to false
set the bounds of container window to {400, 100, 893, 412}
set the bounds of container window to {400, 100, 893, 432}
set theViewOptions to the icon view options of container window
set arrangement of theViewOptions to not arranged
set icon size of theViewOptions to 64
Expand Down
3 changes: 1 addition & 2 deletions src/Flasher.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ class FlasherInfo
class Flasher
{
public:
Flasher(Samba& samba, Device& device, FlasherObserver& observer) : _samba(samba), _device(device), _flash(device.getFlash()), _observer(observer) {}
Flasher(Samba& samba, Device& device, FlasherObserver& observer) : _samba(samba), _flash(device.getFlash()), _observer(observer) {}
virtual ~Flasher() {}

void erase();
Expand All @@ -103,7 +103,6 @@ class Flasher

private:
Samba& _samba;
Device& _device;
Device::FlashPtr& _flash;
FlasherObserver& _observer;
};
Expand Down

0 comments on commit 3be622c

Please sign in to comment.