Disable semantic interposition for build stages
This commit is contained in:
parent
ef02e9ea51
commit
7b95c47e64
3 changed files with 8 additions and 4 deletions
|
@ -41,5 +41,5 @@ ENV FFBUILD_TARGET_FLAGS="--pkg-config=pkg-config --cross-prefix=x86_64-ffbuild-
|
|||
CFLAGS="-static-libgcc -static-libstdc++ -I/opt/ffbuild/include -O2 -pipe -fPIC -DPIC -D_FORTIFY_SOURCE=2 -fstack-protector-strong -pthread" \
|
||||
CXXFLAGS="-static-libgcc -static-libstdc++ -I/opt/ffbuild/include -O2 -pipe -fPIC -DPIC -D_FORTIFY_SOURCE=2 -fstack-protector-strong -pthread" \
|
||||
LDFLAGS="-static-libgcc -static-libstdc++ -L/opt/ffbuild/lib -O2 -pipe -fstack-protector-strong -Wl,-z,relro,-z,now -pthread -lm" \
|
||||
STAGE_CFLAGS="-fvisibility=hidden" \
|
||||
STAGE_CXXFLAGS="-fvisibility=hidden"
|
||||
STAGE_CFLAGS="-fvisibility=hidden -fno-semantic-interposition" \
|
||||
STAGE_CXXFLAGS="-fvisibility=hidden -fno-semantic-interposition"
|
||||
|
|
|
@ -28,4 +28,6 @@ ENV FFBUILD_TARGET_FLAGS="--pkg-config=pkg-config --cross-prefix=i686-w64-mingw3
|
|||
CFLAGS="-static-libgcc -static-libstdc++ -I/opt/ffbuild/include -O2 -pipe -D_FORTIFY_SOURCE=2 -fstack-protector-strong" \
|
||||
CXXFLAGS="-static-libgcc -static-libstdc++ -I/opt/ffbuild/include -O2 -pipe -D_FORTIFY_SOURCE=2 -fstack-protector-strong" \
|
||||
LDFLAGS="-static-libgcc -static-libstdc++ -L/opt/ffbuild/lib -O2 -pipe -fstack-protector-strong" \
|
||||
DLLTOOL="i686-w64-mingw32-dlltool"
|
||||
DLLTOOL="i686-w64-mingw32-dlltool" \
|
||||
STAGE_CFLAGS="-fno-semantic-interposition" \
|
||||
STAGE_CXXFLAGS="-fno-semantic-interposition"
|
||||
|
|
|
@ -28,4 +28,6 @@ ENV FFBUILD_TARGET_FLAGS="--pkg-config=pkg-config --cross-prefix=x86_64-w64-ming
|
|||
CFLAGS="-static-libgcc -static-libstdc++ -I/opt/ffbuild/include -O2 -pipe -D_FORTIFY_SOURCE=2 -fstack-protector-strong" \
|
||||
CXXFLAGS="-static-libgcc -static-libstdc++ -I/opt/ffbuild/include -O2 -pipe -D_FORTIFY_SOURCE=2 -fstack-protector-strong" \
|
||||
LDFLAGS="-static-libgcc -static-libstdc++ -L/opt/ffbuild/lib -O2 -pipe -fstack-protector-strong" \
|
||||
DLLTOOL="x86_64-w64-mingw32-dlltool"
|
||||
DLLTOOL="x86_64-w64-mingw32-dlltool" \
|
||||
STAGE_CFLAGS="-fno-semantic-interposition" \
|
||||
STAGE_CXXFLAGS="-fno-semantic-interposition"
|
||||
|
|
Loading…
Reference in a new issue