|
Last change
on this file since 3770 was 3621, checked in by Bruno Cornec, 9 years ago |
|
New 3?3 banch for incorporation of latest busybox 1.25. Changing minor version to handle potential incompatibilities.
|
-
Property svn:eol-style
set to
native
-
Property svn:executable
set to
*
|
|
File size:
336 bytes
|
| Line | |
|---|
| 1 | #!/bin/sh
|
|---|
| 2 |
|
|---|
| 3 | # I use this to build static uclibc based binary using Aboriginal Linux toolchain:
|
|---|
| 4 | PREFIX=x86_64-
|
|---|
| 5 | STATIC=-static
|
|---|
| 6 | # Standard build:
|
|---|
| 7 | PREFIX=""
|
|---|
| 8 | STATIC=""
|
|---|
| 9 |
|
|---|
| 10 | ${PREFIX}gcc -Os -DPOSIX -I.. -I../sampleCerts -Wall -c ssl_helper.c -o ssl_helper.o
|
|---|
| 11 | ${PREFIX}gcc $STATIC ssl_helper.o ../libmatrixssl.a -lc ../libmatrixssl.a -o ssl_helper
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.