Skip to content

Commit

Permalink
Fix linker flags in controllers extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom-Ski committed May 25, 2014
1 parent 527f436 commit 5fef13d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

<!-- define linker and options -->
<property name="linker" value="${compilerPrefix}g++${compilerSuffix}"/>
<property name="linker-opts" value="-Wl,--kill-at -shared -m32 -static-libgcc -static-libstdc++"/>
<property name="linker-opts" value="-Wl,--kill-at -shared -m32 -static -static-libgcc -static-libstdc++"/>
<property name="libraries" value="-ldinput8 -ldxguid"/>

<!-- cleans the build directory, removes all object files and shared libs -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

<!-- define linker and options -->
<property name="linker" value="${compilerPrefix}g++${compilerSuffix}"/>
<property name="linker-opts" value="-Wl,--kill-at -shared -m32 -static-libgcc -static-libstdc++"/>
<property name="linker-opts" value="-Wl,--kill-at -shared -m32 -static -static-libgcc -static-libstdc++"/>
<property name="libraries" value="-ldinput8 -ldxguid"/>

<!-- cleans the build directory, removes all object files and shared libs -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

<!-- define linker and options -->
<property name="linker" value="${compilerPrefix}g++${compilerSuffix}"/>
<property name="linker-opts" value="-Wl,--kill-at -shared -static-libgcc -static-libstdc++ -m64"/>
<property name="linker-opts" value="-Wl,--kill-at -shared -static-libgcc -static -static-libstdc++ -m64"/>
<property name="libraries" value="-ldinput8 -ldxguid"/>

<!-- cleans the build directory, removes all object files and shared libs -->
Expand Down

0 comments on commit 5fef13d

Please sign in to comment.