blob: 184ffe67e0fa32289993d210f7c7eff92fff9ae7 [file] [log] [blame]
Denys Vlasenko1c6c6702015-10-07 01:39:40 +02001#!/bin/sh
2
3# I use this to build static uclibc based binary using Aboriginal Linux toolchain:
Denys Vlasenko78fb6ea2015-10-07 02:00:11 +02004PREFIX="i686-"
5STATIC="-static"
Denys Vlasenko1c6c6702015-10-07 01:39:40 +02006# Standard build:
7#PREFIX=""
8#STATIC=""
9
10${PREFIX}gcc -Os -Wall -I.. -c ssl_helper.c -o ssl_helper.o
11${PREFIX}gcc $STATIC --start-group ssl_helper.o -lm ../src/.libs/libwolfssl.a --end-group -o ssl_helper
Denys Vlasenko78fb6ea2015-10-07 02:00:11 +020012${PREFIX}-strip ssl_helper