Skip to content
Snippets Groups Projects
Commit 4615a8f8 authored by Thiago Macieira's avatar Thiago Macieira
Browse files

Make sure plugins on Linux resolve all dependencies

Remove the previous code which hardcoded options and didn't work for
linux-icc.

Reviewed-By: dt
parent 5cbbeb17
No related branches found
No related tags found
No related merge requests found
......@@ -146,12 +146,6 @@ unix {
UI_DIR = $${OUT_PWD}/.uic
}
linux-g++* {
# Bail out on non-selfcontained libraries. Just a security measure
# to prevent checking in code that does not compile on other platforms.
QMAKE_LFLAGS += -Wl,--allow-shlib-undefined -Wl,--no-undefined
}
win32-msvc* {
#Don't warn about sprintf, fopen etc being 'unsafe'
DEFINES += _CRT_SECURE_NO_WARNINGS
......
......@@ -60,6 +60,7 @@ macx {
contains(QT_CONFIG, reduce_exports):CONFIG += hide_symbols
CONFIG += plugin plugin_with_soname
linux*:QMAKE_LFLAGS += $$QMAKE_LFLAGS_NOUNDEF
!macx {
target.path = /$$IDE_LIBRARY_BASENAME/qtcreator/plugins/$$PROVIDER
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment