Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Build System #1546

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Saturn.emu/build.mk
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ include $(IMAGINE_PATH)/make/imagineAppBase.mk

ifeq ($(SUBARCH), armv6)
# compile app code in ARMv7, link to ARMv6 libs so dynarec works
android_cpuFlags = -marm -march=armv7-a -mfloat-abi=softfp -mfpu=vfp
android_cpuFlags = -marm -march=armv7-a -mtune=generic -mfloat-abi=softfp -mfpu=vfp
endif

ifneq ($(config_compiler),clang)
Expand Down
4 changes: 2 additions & 2 deletions imagine/make/gradle/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.2.0'
classpath 'com.android.tools.build:gradle:8.2.2'
}
}

Expand Down Expand Up @@ -68,6 +68,6 @@ android {

dependencies {
implementation fileTree(dir: 'libs', include: '*.aar')
implementation "com.android.support:support-v4:23.3.+"
implementation "com.android.support:support-v4:25.4.+"
}

2 changes: 1 addition & 1 deletion imagine/make/linux-x86_64-gcc.mk
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ include $(buildSysPath)/linux-gcc.mk

ARCH := x86_64
ifeq ($(config_compiler),clang)
CFLAGS_CODEGEN += -march=x86-64
CFLAGS_CODEGEN += -march=x86-64 -mtune=generic
else
CFLAGS_CODEGEN += -m64 -mtune=generic
LDFLAGS_SYSTEM += -m64
Expand Down
2 changes: 1 addition & 1 deletion imagine/src/base/android/imagine-v9/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.2.0'
classpath 'com.android.tools.build:gradle:8.2.2'
}
}

Expand Down
Loading