Check-in [4e7ee9f284]
Overview
Comment:Updated to link to libgcc statically on Android
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 4e7ee9f2844d0561327ad19b27228a0d5ae8acf7
User & Date: rkeene on 2014-05-18 02:22:30
Other Links: manifest | tags
Context
2014-05-18
02:22
Upgraded to latest version of tcc4tcl check-in: 5c87065074 user: rkeene tags: trunk
02:22
Updated to link to libgcc statically on Android check-in: 4e7ee9f284 user: rkeene tags: trunk
2014-05-17
05:02
Upgraded to latest tcc4tcl check-in: af990400b1 user: rkeene tags: trunk
Changes

Modified server/buildpkgs/build_all.sh from [7a25fae137] to [4bef3a5bc6].

186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
else
	PLATFORM="${FORCE_PLATFORM}"
fi
export PLATFORM

# Set platform specific configuration
case "${PLATFORM}" in
	solaris2*)
		LDFLAGS="${LDFLAGS} -static-libgcc"
		export LDFLAGS
		;;
esac

# Build all appropriate directories
faileddirs=""







|







186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
else
	PLATFORM="${FORCE_PLATFORM}"
fi
export PLATFORM

# Set platform specific configuration
case "${PLATFORM}" in
	solaris2*|linux-unknown-arm)
		LDFLAGS="${LDFLAGS} -static-libgcc"
		export LDFLAGS
		;;
esac

# Build all appropriate directories
faileddirs=""