Changeset 2112a79 in mainline
- Timestamp:
- 2016-05-22T17:06:37Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 153c7a29
- Parents:
- 97696ab
- Location:
- uspace/app
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/dltest/dltest.c
r97696ab r2112a79 314 314 } 315 315 316 #ifndef STATIC_EXE 317 316 318 /** Test calling a function that returns contents of a private initialized 317 319 * fibril-local variable. … … 538 540 } 539 541 542 #endif /* STATIC_EXE */ 543 540 544 #ifdef DLTEST_LINKED 541 545 … … 829 833 } 830 834 831 #endif 835 #endif /* DLTEST_LINKED */ 832 836 833 837 static int test_dlfcn(void) … … 866 870 return 1; 867 871 872 #ifndef STATIC_EXE 868 873 if (!test_dlfcn_dl_get_private_fib_var()) 869 874 return 1; … … 883 888 if (!test_dlfcn_read_public_fib_uvar()) 884 889 return 1; 890 #endif /* STATIC_EXE */ 885 891 886 892 // printf("dlclose()... "); … … 937 943 } 938 944 939 #endif 945 #endif /* DLTEST_LINKED */ 940 946 941 947 static void print_syntax(void) -
uspace/app/dltests/Makefile
r97696ab r2112a79 35 35 36 36 include $(USPACE_PREFIX)/Makefile.common 37 38 ifeq ($(STATIC_BUILD), y) 39 EXTRA_CFLAGS += -DSTATIC_EXE 40 endif
Note:
See TracChangeset
for help on using the changeset viewer.