fix build script using

This commit is contained in:
Anshul Maheshwari 2014-05-27 17:14:58 +05:30
parent a179dfea91
commit 6a67a646bd
3 changed files with 2 additions and 3 deletions

2
linux/build Normal file → Executable file
View File

@ -1,2 +1,2 @@
#!/bin/bash
g++ -Wno-write-strings -DGPAC_CONFIG_LINUX -D_FILE_OFFSET_BITS=64 -I../src/gpacmp4/ -I../src/libpng/ -I../src/zlib/ -o ccextractor $(find ../src/ -name '*.cpp') $(find ../src/ -name '*.c')
gcc -std=gnu99 -Wno-write-strings -DGPAC_CONFIG_LINUX -D_FILE_OFFSET_BITS=64 -I../src/gpacmp4/ -I../src/libpng/ -I../src/zlib/ -o ccextractor $(find ../src/ -name '*.cpp') $(find ../src/ -name '*.c') -lm -zmuldefs

2
linux/builddebug Normal file → Executable file
View File

@ -1,2 +1,2 @@
#!/bin/bash
g++ -Wno-write-strings -g -DGPAC_CONFIG_LINUX -D_FILE_OFFSET_BITS=64 -I../src/gpacmp4/ -I../src/libpng/ -I../src/zlib/ -o ccextractor $(find ../src/ -name '*.cpp') $(find ../src/ -name '*.c')
gcc -g -std=gnu99 -Wno-write-strings -DGPAC_CONFIG_LINUX -D_FILE_OFFSET_BITS=64 -I../src/gpacmp4/ -I../src/libpng/ -I../src/zlib/ -o ccextractor $(find ../src/ -name '*.cpp') $(find ../src/ -name '*.c') -lm -zmuldefs

View File

@ -14,7 +14,6 @@
* @file dvbsub.c
*/
#include <stdint.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>